How can you split a table in to exactly half?
Answer Posted / arpita
We can achieve this by using STRSQL and CPYF commands as
follows -
Type STRSQL, Press Shift + F1, option1 Change session
attributes.Type 3 for SELECT option, specify the output
file name and library (must be created in QTEMP, for a
temporary file). Press ENTER twice.
Then, type the following query -
select * from SAHAA/EMPDATA1
where rrn(EMPDATA1) in(
SELECT distinct dec((rrn(EMPDATA1)/2)) FROM SAHAA/EMPDATA1
) --> use your file and library name
Press Enter, the message File TEMP in QTEMP was created.
Restore the previous session attributes as follows -
Press Shift + F1, option1 Change session attributes.Type 1
for SELECT option. Press ENTER thrice.
Now, we would have half no. of records of EMPDATA1 in file
TEMP (say)
Now, simply use the CPYF command to copy TEMP file data
into EMPDATA1 as follows -
CPYF FROMFILE(QTEMP/TEMP) TOFILE(SAHAA/EMPDATA1) MBROPT
(*REPLACE)
Note:- TEMP is the file temporarily created in QTEMP, so
that it is no longer present in the system when the session
expires.
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Can there be more than one cursor open for any program?
Explain what are the various isolation levels possible?
What is lock escalation in db2?
What are the various isolation levels possible?
What is blu acceleration in db2?
What is runstats and reorg in db2?
What is the usage of open cursor command?
Explain packages.
What is sqlca’s maximum length?
What type of database is db2?
What is the role of the data page in the db2 database?
Which component is responsible for db2 startup and shutdown?
What is the difference between oracle and db2?
How to find primary key of a table in db2?
what is the role of the cursor in db2?