Question

I'm using the latest version of IBM Data Studio 4.1.2.0

I tried to reorg a table using IBM Data Studio after some alterations on the table with this command.

reorg table MYTABLE;

This command shows an error

REFRESH was expected instead of reorg

But even after using the REFRESH command, the table doesn't come out of the "reorg pending" state.

The same command when I tried it via the DB2 Command Line Processor worked perfectly fine.

Any suggestions on how to to enable the REORG command in Data Studio or is it not supported at all?

Was it helpful?

Solution

I guess you tried to run it in an editor window. YOu have to switch to

DB2 server Command Line Processor

in the Configuration tab of the editor. Do not forget to explicitly connect to your database

connect to sample ;
reorg table suppliers;

Alternatively you could switch to "Administer Databases" and run the reorg from the contect menu of a table:

enter image description here

OTHER TIPS

 CALL SYSPROC.ADMIN_CMD( 'REORG TABLE SCHEMA.TABLENAME' )
Licensed under: CC-BY-SA with attribution
Not affiliated with dba.stackexchange
scroll top