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: SQL*Load Questions

Re: SQL*Load Questions

From: Pilsbury <Pilsbury_at_hotmail.com>
Date: 19 Feb 1999 09:19:07 GMT
Message-ID: <01be5be8$e62d2090$0159ea9e@mothergoose>


Chris,

Does it have to be SQL*Load? There is a facility in Data Manager for loading data into tables, you just tell it where your data file and control files are. With regard to writing control files the basic ones are, well, basic :-)

Eg

load data
infile 'c:\oracledata\t1_data'
into table demo.t1
fields terminated by ' ' <---- tab character in quotes (col1,
 col2,
 col3)

This will load data into table t1 from the datafile t1_data.dat. You don't need the .dat extension in Data Manager. I find this does pretty much what is required if you are just populating tables.

HTH P. Received on Fri Feb 19 1999 - 03:19:07 CST

Original text of this message

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