Converting basic row format table spaces with edit routines to reordered row format
You can convert basic row format table spaces to reordered row format. If some tables in a table space have edit routines, you cannot convert the table space to reordered row format directly. You must take other actions for the conversion to succeed.
Procedure
To convert a table space to reordered row
format, complete the following steps for each table that has an edit
routine:
- Use the UNLOAD utility to unload data from the table or tables that have edit routines.
- Use the DROP statement to drop the table or tables that have edit routines.
- Make any necessary modifications to the edit routines so that they can be used with rows in reordered row format.
- Use the REORG utility to reorganize the table space. Using the REORG utility converts the table space to reordered row format.
- Re-create tables with your modified edit routines. Also, re-create any additional related objects, such as indexes and check constraints.
- Use the LOAD RESUME utility to load the data into the tables
that have the modified edit routines.