What is REORG? When is it used?
Answers were Sorted based on User's Feedback
Answer / mehdee
REORG INDEX
The online REORG INDEX utility reorganizes an index space
to improve access performance and reclaim fragmented space.
You can specify the degree of access to your data during
reorganization, and you can collect inline statistics by
using the STATISTICS keyword.
REORG TABLESPACE
The online REORG TABLESPACE utility reorganizes a table
space to improve access performance and to reclaim
fragmented space. In addition, the utility can reorganize a
single partition or range of partitions of a partitioned
table space.
Traditionally, tablespace reorg consists of the following
steps:
• unload of the data
• redefinition of the tablespace
• reload of the data
• rebuild of the indexes
Now that we know what it dose, it is a DBA person to run
it as required.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / thiru
Yes What Vamsi said is right. But not only it will re-
organise or re arrange the occupied and un occupied space
of the perticular table. By default when we add a new
column to the existing table db2 V9 onwards the REORG is
compulsary. otherwise from any application the table will
not be accessed.
while doing the REORG after New column addition or Bulk
Insert/Load it will rearrange the data internally based on
the indexes available from the table. hence further search
as well as other operations will be faster.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / vamsikrishnamraju
Calculates statistics on the database to determine if
tables or indexes, or both, need to be reorganized or
cleaned up.
| Is This Answer Correct ? | 1 Yes | 5 No |
what is dynamic cursor?gives syntax for this?
What is host variable?
If the main program has only cobol statements and subprogram has the db2 statements what is the procedure for precompilation. for which program we need to do the precompilation
When you are working with the project after coding what will u do? Like what type of documents u will prepare? How will u do testing?
What is cursor?
What is the purpose of the DSNC transaction ?
What is host variable in db2 cobol?
What is a db2 table?
Is it mandatory to use DCLGEN? If not, why would you use it at all?
What is a db2 schema?
How to find primary key of a table in db2?
I have a table(product),It contain fields(productname,cost). I want to retrieve the product name ,which cost is second maximum in the table?