Loading data using external table . [message #215662] |
Tue, 23 January 2007 07:13 |
kanis
Messages: 61 Registered: November 2006
|
Member |
|
|
I have tried to load data in to database table ,using the folowing script
CREATE TABLE test (personid VARCHAR2(20),
Name VARCHAR2(40),
)
ORGANIZATION EXTERNAL
(
TYPE ORACLE_LOADER
DEFAULT DIRECTORY LOG_DIR
ACCESS PARAMETERS
(
records delimited by newline
)
LOCATION ('revext.dat')
)
PARALLEL 4
REJECT LIMIT UNLIMITED;
#######################################
But getting the following errors.
Pls guide me how i can resolve the error??
-
Attachment: Upload.doc
(Size: 29.50KB, Downloaded 1556 times)
|
|
|
|
|
|