SQL to extract the Jobtrac (JTS) tables from the database
search cancel

SQL to extract the Jobtrac (JTS) tables from the database

book

Article ID: 266181

calendar_today

Updated On:

Products

Jobtrac

Issue/Introduction

How can you I use SQL to extract the Jobtrac (AMR, ADR, SCS, CCPF) tables from the database.

Environment

Release : 11.0

Resolution

jobcard...

//REPORT  EXEC PGM=DBSQLPR,                                   
//        PARM='PRTWIDTH=999,INPUTWIDTH=72,ROWLIMIT=9999'     
//STEPLIB  DD DISP=SHR,DSN=your.datacom.CUSLIB        
//                 D DISP=SHR,DSN=your.datacom.CAAXLOAD      
//SYSPRINT DD SYSOUT=*                                        
//STDERR   DD SYSOUT=*                                        
//STDOUT   DD SYSOUT=*                                        
//OPTIONS  DD DUMMY                                           
//SYSIN    DD *                                               
*$ROW                                                         
SELECT * FROM SYSUSR.CAHD_0161_DST ;                          
SELECT * FROM SYSUSR.CAHD_0161_MST ;                          
SELECT * FROM SYSUSR.CAHD_0161_PFT ;                          
SELECT * FROM SYSUSR.CAHD_0161_CMT ;