Converting VCAT-defined partitions to STOGROUP-defined partitions by importing DML
Use the following procedure to import DML to create a task ID that converts table space and index partitions from VCAT to STOGROUP.
The script sets the storage allocation to implicit and removes invalid field values. If you specify a new primary or secondary space allocation in the DML statement, CM/PILOT uses those values. Otherwise, CM/PILOT calculates the new values from the VCAT fields for each partition.
To convert VCAT-defined partitions to STOGROUP defined partitions
In an ISPF editor, type the DML statement to match the one shown in the following figure and provide the information that is unique to your site.For information about DML syntax, see CM-PILOT-Data-Manipulation-Language-DML.
UPDATE TABLEPARTS
SET STORTYPE = 'I',
STORNAME = 'ACMX',
VCATNAME = ''
WHERE
VCATNAME = 'DEBACAT'
;
UPDATE INDEXPARTS
SET STORTYPE = 'I',
STORNAME = 'ACMX',
VCATNAME = ''
WHERE
VCATNAME = 'DEBACAT'
;In the preceding figure, the DML sets the type of storage allocation to implicit (STOGROUP) for the specified VCAT.
- Import the DML file.Now that the DML file has been imported, you can analyze a work ID and execute a worklist.