I have a segment that comes up in UPD when the CV is started. I need to change it so the segment comes up in RET when the CV is started. Where would I make that change?
Release : 19.0
Component : CA IDMS/DB
in OCF or BCF exclude the segment from the DMCL. Example:
MOD DMCL DMCL190N
EXCLUDE SEGMENT APPLDICT;
*+ Status = 0 SQLSTATE = 00000
Then include the segment in the DMCL specifying the startup option:
MOD DMCL DMCL190N
INCLUDE SEGMENT APPLDICT
ON STARTUP SET STATUS TO RETRIEVAL
ON WARMSTART MAINTAIN CURRENT STATUS
DATA SHARING NO
DEFAULT SHARED CACHE NULL
*+ Status = 0 SQLSTATE = 00000
Generate, punch and link the DMCL.