Re: mysql "LOAD DATA" equivalent in Oracle?

From: Thomas Kellerer <YQDHXVLMUBXG_at_spammotel.com>
Date: Tue, 18 Nov 2008 11:49:26 +0100
Message-ID: <6ofktlF3d3r6U1@mid.individual.net>


David Portabella, 18.11.2008 11:36:
> I am using the query in MySql to import data from a tabular file:
> +++++++++++++++++++++
> LOAD DATA LOCAL INFILE '/file1.tab'
> INTO TABLE table1
> FIELDS TERMINATED BY '\t'
> LINES TERMINATED BY '\n'
> (column1, column2, column3);
> +++++++++++++++++++++
>
>
> what is the equivalent to this in Oracle?

SQL*Loader
http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14215/part_ldr.htm

or external tables:
http://download.oracle.com/docs/cd/B19306_01/server.102/b14220/schema.htm#i36180

Thomas Received on Tue Nov 18 2008 - 04:49:26 CST

Original text of this message