The following steps can be used to open a table into a VTS-TSR.
- Install the VTS product described in Chapter 6 of the tableBASE Installation Guide.
- Upon successful installation, there must be a VTS Agent address space running.
- 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.
- 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
/*
//