Opening a table in a VTS-TSR

The following steps can be used to open a table into a VTS-TSR.

  1. Install the VTS product described in Chapter 6 of the tableBASE Installation Guide.
  2. Upon successful installation, there must be a VTS Agent address space running.
  3. Using the DK1TDRVcommand processor for Batch, open the table into the VTS-TSR. Details about the DK1TDRV command processor can be found in Chapter 9 in the tableBASE Programming guide.
  4. A sample JCL along with its control card to open the table EXMPCAT into a VTS-TSR named VTS2 is provided.
//TBDRIV1 EXEC PGM=DK1TDRV
//STEPLIB  DD  DISP=SHR,DSN=your.tableBASE.load
//SYSOUT   DD  SYSOUT=*
//MAINLIB  DD  DISP=SHR,DSN=your.tableBASE.library
//TBOPT    DD  *
TSREGION=2G
LISTOPTIONS=N
MAXNMTAB=5
//CMD      DD  *
SS,VTS2
OR,EXMPCAT
/*
//