Defining the debugging profiles data sets as VSAM non-RLS files

Define VSAM non-RLS files when you do not need to share profiles between regions in the same sysplex. CICS® provides the following sample definitions:

Figure 31. Resource definitions for debugging profiles data sets defined as VSAM non-RLS files
*-------------------------------------------------------------------*
*    Define base file for Debugging Profiles (non-RLS)              *
*-------------------------------------------------------------------*
 DEFINE FILE(DFHDPFMB) GROUP(DFHDP)                                  
 DESCRIPTION(Debugging Profiles Base File)                           
         RLSACCESS(NO)             LSRPOOLID(1)                      
         READINTEG(UNCOMMITTED)    DSNSHARING(ALLREQS)               
         STRINGS(10)               STATUS(ENABLED)                   
         OPENTIME(FIRSTREF)        DISPOSITION(SHARE)                
         DATABUFFERS(11)           INDEXBUFFERS(10)                  
         TABLE(NO)                 RECORDFORMAT(V)                   
         ADD(YES)                  BROWSE(YES)                       
         DELETE(YES)               READ(YES)                         
         UPDATE(YES)               JOURNAL(NO)                       
         JNLREAD(NONE)             JNLSYNCREAD(NO)                   
         JNLUPDATE(NO)             JNLADD(NONE)                      
         JNLSYNCWRITE(NO)          RECOVERY(NONE)                    
         FWDRECOVLOG(NO)           BACKUPTYPE(STATIC)                
*-------------------------------------------------------------------*
*    Define path file for Debugging Profiles (non-RLS)              *
*-------------------------------------------------------------------*
 DEFINE FILE(DFHDPFMP) GROUP(DFHDPVSL)                               
 DESCRIPTION(Debugging Profiles Path File)                           
         RLSACCESS(NO)             LSRPOOLID(1)                      
         READINTEG(UNCOMMITTED)    DSNSHARING(ALLREQS)               
         STRINGS(10)               STATUS(ENABLED)                   
         OPENTIME(FIRSTREF)        DISPOSITION(SHARE)                
         DATABUFFERS(11)           INDEXBUFFERS(10)                  
         TABLE(NO)                 RECORDFORMAT(V)                   
         ADD(YES)                  BROWSE(YES)                       
         DELETE(YES)               READ(YES)                         
         UPDATE(YES)               JOURNAL(NO)                       
         JNLREAD(NONE)             JNLSYNCREAD(NO)                   
         JNLUPDATE(NO)             JNLADD(NONE)                      
         JNLSYNCWRITE(NO)          RECOVERY(NONE)                    
         FWDRECOVLOG(NO)           BACKUPTYPE(STATIC)                
  1. Copy the sample FILE definitions for DFHDPFMB and DFHDPFMP resource to another group.
  2. Add the DSNAME attribute: Alternatively, you can omit the DSNAME attribute, and include a DD card in the CICS startup JCL. For example:
    //DFHDPFMB DD DSN=CICSTS31.CICS.DFHDPFMB,DISP=SHR
    //DFHDPFMP DD DSN=CICSTS31.CICS.DFHDPFMP,DISP=SHR
  3. Install the FILE definitions.

Related tasks
Setting up the debugging profiles data sets
Creating the debugging profiles data sets
Defining the debugging profiles data sets as VSAM RLS files
Defining the debugging profiles data sets as remote files
[[ Contents Previous Page | Next Page Index ]]