Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: How to upload excel data into database tables ?
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)
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
--
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).
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