This document describes how to add an SQL catalog segment to an existing dictionary.
Release: All supported releases
Component: IDMS SQL Option
Note: if you are adding more than one catalog segment to the same CV at the same time (for example, when performing an add-on configuration for the SQL Option), you may perform steps 1-3, 5-6 and 8-10 together for all of the new catalogs, and perform steps 4 and 7 only once.
//SYSIPT DD *CONNECT TO SYSTEM;// DD DISP=SHR,DSN=your.idms.SRCLIB(TESTSQL)
CONNECT TO SYSTEM;ALTERDMCL CVnnDMCL INCLUDE SEGMENT TESTSQL;ALTERDBNAME CVnnDBTB.TESTDICT INCLUDE SEGMENT TESTSQL;
//SYSIPT DD *CONNECT TO SYSTEM;FORMAT SEGMENT TESTSQL;
//SYSIPT DD *CONNECT TO TESTDICT;// DD DISP=SHR,DSN=smpe.idms.CAGJSRC(TABLEDDL)// DD DISP=SHR,DSN=smpe.idms.CAGJSRC(VIEWDDL)// DD DISP=SHR,DSN=smpe.idms.CAGJSRC(VDB5V18X) <== only if using Visual DBA
CONNECT TO TESTDICT;UPDATE STATISTICS FOR AREA TESTSQL.DDLCAT;
//SYSIPT DD *CONNECT TO TESTDICT;// DD DISP=SHR,DSN=your.idms.SRCLIB(TESTSQL)