The following JCL can be used to disconnect a User Catalog from the Master Catalog of your z/OS system:
//EXPORT EXEC PGM=IDCAMS
//SYSPRINT DD SYSOUT=*
//SYSIN DD *
EXPORT user_catalog_name DISCONNECT
/*
user_catalog_name should be replaced by the name of your User Catalog dataset name.
Alternatively you can issue the following TSO command:
TSO EXPORT user_catalog_name DISCONNECT
Be the first to comment