Hi
I want to use SQL*Loader , an Oracle-supplied utility to load data from a flat file into one database tables.
for this I have write the scripts in the SQL*LOADER control file named loader.ctl. actual data file is mydata.csv that I have mentioned under ‘load data’ section in loader.ctl .
P.N : I am using my personal oracle installed on windows Pc. not using any n/w resources to access oracle DB
Now I know we need to invoke SQL*Loader (from command line) and point it to the control file describing the data in order to initiate this load.
Now when I try from the Command Line The following sqlldr command
sqlldr scott/tiger control= loader.ctl
it gives me following errors
sql*loader error 500 unable to open file
sql*loader eroor 553 file not found
sql*loader error 509 the system can not find specified file.
right now my control file location is c:\loader.ctl.
(but the command cant locate it)
I even tried placing it in c:\oracle and few other different folder under oracle folder. but no luck..!!!
I have tried giving the path in command too but no luck.
Could any one tell me what should be the location of my control file loader.ctl?
Thanks
Vishal