Invocation

The Data Manager is invoked by executing a build command of build database.

DB2 development database optimization tip.: During iterative development with DB2 on distributed platforms the dropping and creation of tables performed during the build database target can be optimized to run quicker by running the script:

ant -f %CURAMSDEJ%\util\db2_optimizedbrecreation.xml

once per database. Internally this runs:

ALTER TABLESPACE USERSPACE1 DROPPED TABLE RECOVERY OFF;

ALTER TABLESPACE CURAM_L DROPPED TABLE RECOVERY OFF;

This step should not be performed on a production database.