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

Home -> Community -> Usenet -> c.d.o.misc -> Re: Loading external data without specifying column names

Re: Loading external data without specifying column names

From: sybrandb <sybrandb_at_gmail.com>
Date: 14 Nov 2006 10:24:53 -0800
Message-ID: <1163528693.580091.284140@h54g2000cwb.googlegroups.com>

Chrean wrote:
> Hello folks,
> I'd need to do exactly what I wrote in subject.
> Starting from a set of txt files, each containing data to be loaded in
> my oracle db's tables, I have to write a script that loops on each file
> and load it into the db.
> I tried with sqlldr, but it requires that I specify every column name.
> I don't want to do that, 'cause my routine will always find a match
> between db columns and datafiles fields.
>
> Correct syntax is:
>
> load data
> infile 'example.dat' "fix 11"
> into table example
> fields terminated by ',' optionally enclosed by '"'
> (col1, col2)
>
> while I'd want something like this:
>
> load data
> infile 'example.dat' "fix 11"
> into table example
> fields terminated by ',' optionally enclosed by '"'
>
> 'cause I already know my table will have 2 columns (and my datafile
> will always have 2 fields, of course), not necessarily named "col1",
> "col2".
>
> Thanks in advance,
> Chrean

Oracle is a *database*, NOT a GARBAGE BIN. Databases are *DESIGNED*!!!

-- 
Sybrand Bakker
Senior Oracle DBA
Received on Tue Nov 14 2006 - 12:24:53 CST

Original text of this message

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