Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> RE: How to upload excel data into database tables ?

RE: How to upload excel data into database tables ?

From: GL2Z/ INF DBA BENLATRECHE <kbenlatreche_at_avl.sonatrach.dz>
Date: Mon, 19 May 2003 03:41:39 -0800
Message-ID: <F001.0059C59C.20030519034139@fatcity.com>


One way is :

  1 - save your Excel sheet as a csv format type (with ';' as columns separator),
  2 - Create your CTL file example :

      LOAD DATA 
	INFILE 'your_csv_file'
	INTO TABLE Oracle_table
	FIELDS TERMINATED BY ';'
	(Columns description)

  3 - use Sqlloader command to upload this file into Oracle table(s)

Regards
Kamel B.

-----Message d'origine-----
De : FAIZ QURESHI [mailto:faizq_at_hotmail.com] Envoyé : lundi 19 mai 2003 10:12
À : Multiple recipients of list ORACLE-L Objet : How to upload excel data into database tables ?

Hello:
I have a requirement where in I have to populate data from an Excel sheet into a database table.
Can you seuggest me which is the best way to do this and also provide with a

step by step description of the procedure that is involved in doing this. I would also appreciate if you could forward me a demo file which does this kind of an operation.
Regards,
Faiz



STOP MORE SPAM with the new MSN 8 and get 2 months FREE* http://join.msn.com/?page=features/junkmail

--

Please see the official ORACLE-L FAQ: http://www.orafaq.net
--

Author: FAIZ QURESHI
  INET: faizq_at_hotmail.com

Fat City Network Services    -- 858-538-5051 http://www.fatcity.com
San Diego, California        -- Mailing list and web hosting services
---------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
--

Please see the official ORACLE-L FAQ: http://www.orafaq.net
--

Author: GL2Z/ INF DBA BENLATRECHE
  INET: kbenlatreche_at_avl.sonatrach.dz
Fat City Network Services    -- 858-538-5051 http://www.fatcity.com
San Diego, California        -- Mailing list and web hosting services
---------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Mon May 19 2003 - 06:41:39 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US