FAQ
Command Verifier

Useful Commands for zSecure Command Verifier

Here’s a list of some of the most useful commands when dealing with zSecure Command Verifier (CV): Action Command Activate CV /SETPROG EXIT,ADD,EXITNAME=IRREVX01,MODNAME=C4RMAIN,STATE=ACTIVE Remove CV /SETPROG EXIT,DELETE,EXITNAME=IRREVX01,MODNAME=C4RMAIN Check CV status TSO C4RSTAT Enable CV /SETPROG EXIT,MODIFY,EXITNAME=IRREVX01,MODNAME=C4RMAIN,STATE=ACTIVE Disable CV /SETPROG EXIT,MODIFY,EXITNAME=IRREVX01,MODNAME=C4RMAIN,STATE=INACTIVE Refresh RACF XFACILIT class SETROPTS RACLIST(XFACILIT ) REFRESH Refresh LLA […]
JCL

Delete content of a sequential dataset using IDCAMS

The following JCL will delete the content of a sequential dataset without deleting it using the IDCAMS utility: //DELCONT  EXEC PGM=IDCAMS //DDDMMY   DD DUMMY //DDOUT    DD DISP=SHR,DSN=USER1.MYDATA.EXAMPLE //SYSPRINT DD SYSOUT=* //SYSOUT   DD SYSOUT=* //SYSIN    DD * REPRO IFILE(DDDMMY) OFILE(DDOUT)   Replace USER1.MYDATA.EXAMPLE by the sequential dataset you wish to delete […]
JCL

Copy content of one Dataset into another using IEBCOPY

The following JCL will allow you to copy the content of one dataset into another via batch job: //COPY EXEC PGM=IEBCOPY //SYSPRINT DD SYSOUT=* //IN  DD DISP=SHR,DSN=USER1.MYDATA.EXAMPLE //OUT DD DISP=SHR,DSN=USER2.MYDATA.FORYOU //SYSIN DD * COPY INDD=IN,OUTDD=OUT Replace USER1.MYDATA.EXAMPLE and USER2.MYDATA.FORYOU by your own dataset names.
MVS

Create a New SMF Dataset

It’s not uncommon to be faced with the situation where one of our z/OS mainframe systems requires an extra SMF (System Management Facility) dataset in order to avoid losing any SMF data to be recorded. To create a new SMF dataset we rely on the use of the DEFINE command […]
Question keyboard key
MVS

What is System Management Facility (SMF)

System Management Facility (SMF) is an IBM z/OS mainframe component that collects and records system and job-related information that can be used to: Bill users/customers Analyse system configuration Maintain system security Summarise DASD volume activity Evaluate dataset activity Profile system resource use Schedule jobs Produce reliability reports   SMF formats […]