CONVERT example: Specifying the number of partitions

If you know how many partitions you intend to convert to, you can use the PARTNUM parameter to specify this number.

To specify the number of partitions, use the sample member IHCECVT1. The following example converts a database into two partitions:
Figure 1. Sample JCL (IHCECVT1) for batch using PARTNUM
//JOBNAME   JOB NAME,000,CLASS=A,MSGCLASS=X                                    
//********************************************************************         
//*         SAMPLE JCL FOR CONVERT - using PARTNUM method                      
//*                                                                            
//*  Your databases must be registered to DBRC                                 
//*  You must /dbr your databases prior to executing this job                  
//*      unless you use ONLINE(Y) and have Online Reorg installed              
//********************************************************************         
//S2     EXEC PGM=IHCHALDB,DYNAMNBR=999,REGION=80M                             
//STEPLIB  DD DISP=SHR,DSN=your.SIHCLOAD   <=== your hcma loadlib              
//         DD DISP=SHR,DSN=your.SDFSRESL     <=== ims reslib                   
//         DD DISP=SHR,DSN=your.SHPSLMD0     <=== ims tools loadlib            
//DFSRESLB DD DISP=SHR,DSN=your.SDFSRESL     <=== ims reslib                   
//MACLIB   DD DISP=SHR,DSN=your.SDFSMAC      <=== ims maclib                   
//IMS      DD DISP=SHR,DSN=your.dbdlib       <=== ims dbdlib                   
//IMSDALIB DD DISP=SHR,DSN=your.mdalib       <=== ims mdalib                   
//SYSPRINT DD SYSOUT=*                                                         
//MSGPRINT DD SYSOUT=*                                                         
//DBDPRINT DD SYSOUT=*                                                         
//LNKPRINT DD SYSOUT=*                                                         
//AMSPRINT DD SYSOUT=*                                                         
//SYSUDUMP DD SYSOUT=*                                                         
//IHCLIST  DD SYSOUT=*                                                         
//IHCSYSIN DD *                                                                
  CONVERT  ONLINE(N) -                                                         
           PARTNUM(2) -                                                        
           DBDPATT(*****...) DSNPREF(DBSMS.DB) -                               
           DBD(xxxx) -                                                         
           ICMID(3) -                                                          
           ICHLQ(DBSMS.DB.IC) -                                                
           ICTRLR(2) -                                                         
           IC.COMP(Y) -                                                        
           IC.COMPRTN(FABJCMP2) -    
           PTRCHECK(Y)