What does the REORG Utility do?

Answers were Sorted based on User's Feedback



What does the REORG Utility do?..

Answer / guest

REORG is a db2 utlity, to reclustering, reclaim the table
space. it used when the bulk updates or inserts happens.

Is This Answer Correct ?    23 Yes 5 No

What does the REORG Utility do?..

Answer / harsha

Reorg is done when

1) clustratio <80% ( for IBM stranded)
2) when altering the Cluster object
3) when dropping the cluster object
4) when bulk updates and inserts are done
5) space reclamation
6) when a table is changed from compression to decompression
mode

Is This Answer Correct ?    6 Yes 2 No

Post New Answer

More DB2 Interview Questions

How Plan is created while executing the query using SPUFI?

3 Answers  


Explain how can you do the explain of a dynamic sql statement?

0 Answers  


What is reorg in database?

1 Answers  


what is the difference between declaring the cursor in WS section and Procedure division?

1 Answers   HCL,


Is db2 a database?

0 Answers  






What is a thread?

3 Answers  


What Utility is used to migrate DB2 from one release to the next?

1 Answers  


SET is the ANSI standard for variable assignment, SELECT is not. SET can only assign one variable at a time, SELECT can make multiple assignments at once. If assigning from a query, SET can only assign a scalar value. If the query returns multiple values/rows then SET will raise an error. SELECT will assign one of the values to the variable and hide the fact that multiple values were returned (so you'd likely never know why something was going wrong elsewhere - have fun troubleshooting that one) When assigning from a query if there is no value returned then SET will assign NULL, where SELECT will not make the assignment at all (so the variable will not be changed from it's previous value) As far as speed differences - there are no direct differences between SET and SELECT. However SELECT's ability to make multiple assignments in one shot does give it a slight speed advantage over SET.

0 Answers  


What is the SQL Communications Area and what are some of its key fields?

1 Answers  


What is db2 purescale?

0 Answers  


What is the connection string to connect to the DB2 Database ?

0 Answers   MCN Solutions,


How many buffer pools are there in DB2?

2 Answers  


Categories