Standalone execution of the Apply Engine for accessing datastores other than IMS will use JCL similar to sample member SQDATA included in the distribution.
Example
//SQDATA JOB 1,MSGLEVEL=(1,1),MSGCLASS=H,REGION=0M,NOTIFY=&SYSUID
//*
//*--------------------------------------------------------------------
//* Execute the SQData Engine standalone in Batch
//*--------------------------------------------------------------------
//* Note: 1) This Job may require specification of the Public/Private
//* Key pair in order to connect to a Capture/Publisher
//* running on another platform
//*
//* 2) To run the SQDATA Engine as a started task, refer to
//* member SQDAMAST
//*
//* Required DDNAME:
//* SQDFILE DD - File that contains the Parsed Engine Script
//*--------------------------------------------------------------------
//*
//JOBLIB DD DISP=SHR,DSN=SQDATA.V400.LOADLIB
//* DD DISP=SHR,DSN=DSNC10.SDSNLOAD
//* DD DISP=SHR,DSN=CSQ901.SCSQAUTH
//* DD DISP=SHR,DSN=CSQ901.SCSQANLE
//*
//SQDATA EXEC PGM=SQDATA
//SQDPUBL DD DISP=SHR,DSN=SQDATA.NACL.PUBLIC
//SQDPKEY DD DISP=SHR,DSN=SQDATA.NACL.PRIVATE
//SYSPRINT DD SYSOUT=*
//SQDLOG DD SYSOUT=*
//*SQDLOG8 DD DUMMY
//CEEDUMP DD SYSOUT=*
//*
//*---- PARSED ENGINE SCRIPT FILE ----
//SQDFILE DD DISP=SHR,DSN=SQDATA.V400.SQDOBJ(<ENGINE>)
JOBLIB | References the Connect CDC (SQData) load library. |
SQDPUBL | NaCL Public key required when connecting to a SQData Controller Daemon. |
SQDPKEY | NaCL Private key required when connecting to a SQData Controller Daemon. |
SQDLOG | Will contain all diagnostic log messages. |
SQDLOG8 | Optional, used as a switch to specify Log-level 8 diagnostics, used together with the "X" named diagnostic version of the Component. |
SQDLOGL | Optional alternative to SQDLOG8 that allows the specification of additional diagnostic parameters specific to the Component. Used together with the "X" named diagnostic version of the Component will produce the most verbose version of the log. |
SQDFILE | Apply Engine only, refers to the parsed script file that will be used as input to the Engine. |
SYSPRINT | Will contain the Component runtime report. |