How can I move all ROSCOE ACCT files from 3380 to 3390 disks?
search cancel

How can I move all ROSCOE ACCT files from 3380 to 3390 disks?

book

Article ID: 14371

calendar_today

Updated On:

Products

Roscoe

Issue/Introduction




How Can I move the CA Roscoe accounting (ACCT) files from 3380 to 3390 disks?

Environment

Release:
Component: ROSCOE

Resolution

Our suggestion is to dump Accounting files using ACCTDUMP and then reallocate new ones. 

Member RO60ALAC in the SAMPJCL will allocate the Accounting files. Please read : 
- CA Roscoe Installation Guide 
- Chapter 4. Advantage CA-Roscoe Installation Steps, 
- 4.20 Step 19. Allocate Accounting Data Sets 

Member ACCTDUMP in the SAMPJCL file will dump the original accounting file to a output data set. Please read: 
- CA Roscoe Programs and Utilities Guide 
- Chapter 2. Accounting Maintenance Programs 
- 2.1 Prepare Accounting Files (ACCTDUMP Program) 
. 
Here is the JCL to dump the accounting files. 

//STEP1 EXEC PGM=ACCTDUMP 
//STEPLIB DD DSN=ROSCOE.RO60LIB,DISP=SHR 
//SYSPRINT DD SYSOUT=* 
//OUTPUT1 DD DSN=ROSCOE.OUTPUT.DISP=SHR 
//ROSACT00 DD DISP=SHR,DSN=ROSCOE.ROSACT00 
//ROSACT01 DD DISP=SHR,DSN=ROSCOE.ROSACT01 
//ROSACT02 DD DISP=SHR,DSN=ROSCOE.ROSACT02 

If you want to allocate the //OUTPUT1 as NEW 

//OUTPUT1 DD DSN=ROSCOE.OUTPUT,DISP=(NEW,CATLG,DELETE), 
// UNIT=3390,VOL=SER=volser, 
// SPACE=(1024,1),DCB=(RECFM=VB,LRECL=1020,BLKSIZE=1024)