Previous Topic: Sample JCL for NDVRCNFGNext Topic: Change Monitor Operations


NDVRCNFG Coding Examples

To establish base names for a dictionary pointed to by more than one DICTNAME, code:

//SYSIN    DD   *
         NDVRSERV DBNAME=DBNAMEA       set up first CCDB name
         NDVRSERV DBNAME=DBNAMEB       set up second CCDB name
         NDVRSERV END=YES
         END

To establish two driver tasks and run DBNAME DB1 and DB2 under a common separate driver, code:

//SYSIN    DD   *
         NDVRSERV SERVER=1,DBNAME=DB1
         NDVRSERV SERVER=1,DBNAME=DB2
         NDVRSERV END=YES
         END

All DBNAMEs not specified above will go to driver 0.

To establish three driver tasks and assign DB1 to one separate driver and DB2 to another separate driver, code:

//SYSIN    DD   *
         NDVRSERV SERVER=1,DBNAME=DB1
         NDVRSERV SERVER=2,DBNAME=DB2
         NDVRSERV END=YES
         END

All DBNAMEs not specified above, but defined to the DBNAME table will go to driver 0.