How to insert more than one record using insert?
Answer Posted / ratheesh nellikal
U could probably go for a bulk insert also.
try this option
insert into schema.table1
select * from schema.table2;
Cheers,
Ratheesh Nellikal
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
I understand Join always perform better than subqueries. Then what is the advantage/use of Subqueries/correlated subqueries etc.,in DB2 programming.Please explain.
For a db2 column that is being defined as decimal (11, 2), discuss the cobol picture clause.
Define data page.
What is buffer pool and list some of them?
What are the uses of db2 optimizer?
Is it possible to alter a table – for example adding a column, when another user is accessing or updating some columns?
What is lock escalation in db2?
What is rebind in db2?
How can you quickly find out the # of rows updated after an update statement?
What is temporal table in db2?
What is the use of value function?
List out the data types available.
What is explain plan in db2?
How to find the number of rows in db2 tables?
What are union and union all?