Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

how to create sql script from excel

rajasekhar_nMay 21 2008 — edited May 21 2008
Hi All ,
How to create sql(insert ) script from excel sheet.I can insert the data into table from excel sheet but i need script file.
ex:
excel sheet
acno acname balance
100 'A' 2000
200 'B' 3000
3000 'C' 4000

I have to create the script like

insert into tname values(100,'A',2000);
insert into tname values(200,'B',3000);
insert into tname values(300,'C',4000);

Please any body can help me.
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jun 18 2008
Added on May 21 2008
3 comments
4,461 views