View - View and Deliver Database Information, for Migration
search cancel

View - View and Deliver Database Information, for Migration

book

Article ID: 248853

calendar_today

Updated On:

Products

View

Issue/Introduction

I will be performing a migration of View and Deliver database and database data.

What information is there regarding performing View and Deliver database UNLOADs, as well as identifying View tapes for a database and active reports?

Environment

Release : 14.0

Component : View

Resolution

To unload the View and Deliver database, when running SARDBASE and RMODBASE UNLOAD jobs, you need to ensure that all tasks against the databases are down, including any online access tasks. 

Here is JCL for a SARDBASE UNLOAD:

//XXXXXXXX JOB ...                                                
//SARDBASE EXEC PGM=SARDBASE,PARM='VIEW_HLQ'  <=== MODIFY DB NAME 
//STEPLIB  DD  DISP=SHR,DSN=VIEW.CVDELOAD     <=== MODIFY, IF USED
//SYSPRINT DD  SYSOUT=*                                           
//SARUNLD  DD  DISP=(,CATLG,DELETE),                              
//             DSN=XXXXXX.XXXXXX.SARUNLD,                         
//             DCB=(RECFM=VB,LRECL=32756,BLKSIZE=32760),          
//             SPACE=(CYL,(NNN,NNN),RLSE),                        
//             UNIT=XXXX,VOL=SER=YYYYYY                           
//SYSIN    DD *                                                   
UNLOAD                                                            
/*                                                                
//                                                                 

Here is JCL for a RMODBASE UNLOAD:

//XXXXXXXX JOB ...                                                
//RMODBASE EXEC PGM=RMODBASE,PARM='DLVR_HLQ'  <=== MODIFY DB NAME 
//STEPLIB  DD  DISP=SHR,DSN=DLVR.CVDELOAD     <=== MODIFY, IF USED
//SYSPRINT DD  SYSOUT=*                                           
//RMOUNLD  DD  DSN=XXXXXX.XXXXXX.RMOUNLD,                         
//             DISP=(,CATLG,DELETE),                              
//             UNIT=XXXX,VOL=SER=YYYYYY,                          
//             SPACE=(CYL,(NNN,NN),RLSE)                          
//SYSIN    DD   *                                                 
UNLOAD                                                            
/*  

To determine how many tapes there are, on each View database, run the following SARPAC REPORT JCL:

//XXXXXXXX JOB ...                                                    
//SARPAC   EXEC PGM=SARPAC,PARM='VIEW_HLQ,REPORT' <=== MODIFY DB NAME 
//STEPLIB  DD  DISP=SHR,DSN=VIEW.CVDELOAD     <=== MODIFY, IF USED    
//SYSPRINT DD  SYSOUT=*                                               
//SYSUDUMP DD  SYSOUT=*                                               
//SYSIN    DD  DUMMY                                                  
//                                                                    

To determine the active reports, on each View database, run the following SARTSLST JCL:

//XXXXXXXX JOB ...                                                     
//SARTSLST EXEC PGM=SARTSLST,PARM='VIEW_HLQ,00001-65535' <=== MODIFY DB NAME 
//STEPLIB  DD  DISP=SHR,DSN=VIEW.CVDELOAD   <=== MODIFY, IF USED       
//SYSPRINT DD  SYSOUT=*                                                
//SYSUDUMP DD  SYSOUT=* 
//