slicendice
Programmer
Hello
I'm just wondering if it's possible to specify a relative path in a SQL*Loader control file - so something along the lines of:
I've tried doing something along the lines of the above, but it just gets kicked out with the error "The system cannot find the file specified".
I believe you can specify a full path, but it's specifically a relative path that I'm looking at.
Thanks very much!
I'm just wondering if it's possible to specify a relative path in a SQL*Loader control file - so something along the lines of:
Code:
LOAD DATA
INFILE '../data1.csv'
BADFILE '../data1.bad'
DISCARDFILE '../data1.dsc'
TRUNCATE INTO TABLE data1
FIELDS TERMINATED BY ','
TRAILING NULLCOLS
(
col1 INTEGER EXTERNAL,
col2 CHAR,
col2 DATE "DD/MM/YYYY"
)
I've tried doing something along the lines of the above, but it just gets kicked out with the error "The system cannot find the file specified".
I believe you can specify a full path, but it's specifically a relative path that I'm looking at.
Thanks very much!