DBUTLTY CXXMAINT ALTER DSOP was used to change DSOP ( area SPACE-MNGMNT attribute) to 4 .
After executing DDUPDATE to enable dynamic extend , as per below transactions, the DSOP change got reverted back.
-UPD AREA,area entity name(PROD)
1000 ALTER
1500 DYNAMIC-EXTEND,T
1500 DYN-EXT-TRACKS,nnnn
-END
Z/OS
Datacom 15.1
CXXMAINT only updates the CXX , not Datadictionary . A subsequent catalog reverses back the change made by CXXMAINT.
DDUPDATE 1000 ALTER updates both the CXX and Datadictionary ( a database catalog is done under the covers) .
For normal databases where Datadictionary has a current definition of this database,
the DSOP change can be made by
DDUPDATE transactions to change DSOP to 4 :
-USR DATACOM-INSTALL,NEWUSER
-UPD AREA,area entity name(PROD)
1000 ALTER
1500 SPACE-MNGMNT,4
-END
-UPD AREA,area entity name(PROD)
1000 ENABLE
-END