View previous topic :: View next topic |
Author |
Message |
psridhar Beginner
Joined: 16 May 2004 Posts: 68 Topics: 26
|
Posted: Tue Mar 14, 2006 7:21 am Post subject: Insert multiple rows through INSERT statement |
|
|
Hi
My table has 3 columns and I have some rows in a flat file as follows.
Code: | 1 aaa xxx
2 bbb yyy
3 ccc zzz
. ... ... |
Shall I insert all those rows in to my table with a single INSERT statement?
Actually, I have 300 rows in flat file and I am inserting INSERT INTO MY.TABLE VALUES after every row in the flat file any my flat file becomes some thing like below...
Code: | INSERT INTO MY.TABLE VALUES
1 aaa xxx
INSERT INTO MY.TABLE VALUES
2 bbb yyy
INSERT INTO MY.TABLE VALUES
3 ccc zzz
. ... ... |
Can anybody help me out...
Regards
Sridhar |
|
Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12378 Topics: 75 Location: San Jose
|
|
Back to top |
|
 |
|
|