Hi,
I have a data.csv file with data like
123,john,texas
342,peter,china
111,craig,detroit
I need to insert these values from the file into a table
create table myTable(id varchar(5),name varchar(5),place varchar(5) )
Im using SQL plus with Oracle 9i client
I can't use the sqlldr command as i dont have SQL*Loader
Pls let me know how to go abt this.
Thanks
Roy