How can you split a table in to exactly half?
Answer Posted / reddy kanupuru
Hi,
Here i am giving the procedure , how to make the table into
half..... using program... I dont know whether any direct
SQL command is there or not. This is just for ur idea what
i know.
1) Find the total number of rows in a table using count(*)
2) Declare two variable in working storage section.
eg: 02 A pic 9(4) .
02 B pic 9(2).
store the count no into one variable .assume u stored that
in A.
then divide that by 2. so u will get half of the rows in a
table. strore that value in B.
3) Take another variable name C .
eg: 02 c pic 9(4) value 0.
perform para1 until B =C
para1:
Retrive the row from the table.
move to corresponding host variables ( use table to store
muliple rows ).
insert into table(u can insert multiple rows at a time ...)
do the same for storing the other half into the another
table.
means here 1 st half rows were stored in one temp
table .... the other in the one table.
| Is This Answer Correct ? | 4 Yes | 3 No |
Post New Answer View All Answers
How to find schema of a table in db2?
How do you select a row using indexes in db2?
what is db2 restart?
When the like statement is used?
What is null indicator in cobol db2?
How is a typical db2 batch pgm executed?
Give a brief description of db2 isolation levels?
Why db2 is called db2?
What is check constraint. Explain with example.
What is sqlca?
What is a system catalog table in db2?
What is db2 connect?
Explain various types of locks in db2?
What is difference between rollback and commit?
How will you return the number of records in table?