SQL*Loader for XP won't Load [message #132392] |
Fri, 12 August 2005 08:40 |
alland
Messages: 3 Registered: August 2005
|
Junior Member |
|
|
Hello, I'm a newbie and am trying to learn to load data into an Oracle table. I've looked at the documentation, and tahiti and I am unable to load data.
The Table, Test1, consists of one field, State. My instance is called Test.
The data file looks like this:
"NJ",
The control file looks like this:
LOAD DATA
INFILE 'c:\mystates.csv'
INTO TABLE TEST1
FIELDS TERMINATED BY "," OPTIONALLY ENCLOSED BY '"'
(STATE CHAR)
The command line looks like this:
sqlldr userid=system/allan1@TEST control=C:\mystates.ctl
{I'm running this using Start-->Run
in Windows XP.)
Thanks in advance.
|
|
|
|
|
|