The ACF2 Infostorage(INFOSTG) record size of the ACF2 databases was increased to activate the RULELONG RULEOPTS.
The /F ACF2,BACKUP command create a file with a record size of 4K instead of 12k for the Infostorage and resources databases. Is that normal?
Release : 16.0
Both the ACF2 manual 'F ACF2,BACKUP' command and the automatic backup will create the ACF2 backup sequential files with the LRECL and BLKSIZE as needed. So if/when a site has rules greater than 4K the sequential backup RULES and INFOSTG files created from the ACF2 backup will have the appropriate LRECL and BLKSIZE(>4K) required for the IDCAMS REPRO.
The ACF2 installation CAX1JCL0 library contains JCL to define the ACF2 backup sequential datasets, the following are portions of the sample JCL related to the ACF2 sequential backup files for the ACF2 databases:
//* *
//* 1. THREE VSAM CLUSTERS AND SEQUENTIAL BACKUP FILES *
//* ARE ALLOCATED AS FOLLOWS: *
//* *
//* SYS1.ACF.LOGONIDS - VSAM LOGONID DATABASE *
//* SYS1.ACF.RULES - VSAM DATASET ACCESS RULE DATABASE*
//* SYS1.ACF.INFOSTG - VSAM INFORMATION STORAGE DATABASE*
//* *
//* SYS1.ACF.BKLIDS - SEQUENTIAL LOGONID BACKUP FILE *
//* SYS1.ACF.BKRULES - SEQUENTIAL ACCESS RULE BACKUP *
//* SYS1.ACF.BKINFO - SEQUENTIAL INFO STORAGE BACKUP *
//*
//*
//DEFINE EXEC PGM=IDCAMS,REGION=4096K
//SYSPRINT DD SYSOUT=*
//DISK DD DISP=SHR,UNIT=SYSDA,VOL=SER=VSAM01
//BKLIDS DD DISP=(,CATLG),DSN=SYS1.ACF.BKLIDS,
// UNIT=SYSDA,VOL=SER=PERM01,SPACE=(CYL,(2,1))
//BKRULES DD DISP=(,CATLG),DSN=SYS1.ACF.BKRULES,
// UNIT=SYSDA,VOL=SER=PERM01,SPACE=(CYL,(2,1))
//BKINFO DD DISP=(,CATLG),DSN=SYS1.ACF.BKINFO,
// UNIT=SYSDA,VOL=SER=PERM01,SPACE=(CYL,(2,1))
*