Hello,
I am trying to use sqlload to import and replace two rows in a table. I am also very new to this. I have made a .ctl file which looks like this:
----------------------------------
LOAD DATA
INFILE=load.dat
REPLACE
INTO TABLE TEST_TABLE
fields terminated by whitespace
------------------------------------
The .dat file is simply a txt file like this:
------------------------------------
CLM1 CLM2
123 456
456 789
789 123
-------------------------------------
When I do a
sqlloas userid=username/password control=load.ctl I get this error:
SQL*Loader: Release 7.3.2.3.0 - Production on Mon Mar 11 15:51:47 2002
Copyright (c) Oracle Corporation 1979, 1994. All rights reserved.
SQL*Loader-350: Syntax error at line 5.
Expecting "(", found end of file.
Can anybody help - it is probably trivially easy!
I am trying to use sqlload to import and replace two rows in a table. I am also very new to this. I have made a .ctl file which looks like this:
----------------------------------
LOAD DATA
INFILE=load.dat
REPLACE
INTO TABLE TEST_TABLE
fields terminated by whitespace
------------------------------------
The .dat file is simply a txt file like this:
------------------------------------
CLM1 CLM2
123 456
456 789
789 123
-------------------------------------
When I do a
sqlloas userid=username/password control=load.ctl I get this error:
SQL*Loader: Release 7.3.2.3.0 - Production on Mon Mar 11 15:51:47 2002
Copyright (c) Oracle Corporation 1979, 1994. All rights reserved.
SQL*Loader-350: Syntax error at line 5.
Expecting "(", found end of file.
Can anybody help - it is probably trivially easy!