RATE THIS ANSWER
+1
Click to Vote:
1
0
It can be done with the help of
Sql*Loader It has many parameters and options, but you could use a simple control file like this:
LOAD DATA
INFILE 'c:\MY_FILE.csv'
INSERT INTO TABLE MY_TABLE
FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
TRAILING NULLCOLS
(
FIELD_1,
FIELD_2,
FIELD_3
)
Then you could call Sql*Loader like this:
sqlldr my_user@my_database control=my_control_file.ctl
The documentation includes many examples as well.
Last Answered:
Oct 19 2009 8:04 PM GMT by Carlosdl 
29770 pts.