FDRTCTUT – FDR Transparent Cloud Tiering Batch Utility
This utility is used to report on and manipulate the containers, objects, and “backups” in the FDR Cloud Tiering feature of the FDRABR product.
The product distribution PROC used to invoke this utility is FDRCTUTL. The input statements for the utility are specified with the SYSIN DD card and the output is produced on the SYSPRINT DD card.
The user of the batch utility must be a TSO user with an OMVS segment. Each action statement specified is authorized with a SAF (RACF etc…) system call for READ access against a FACILITY class name for each action statement. See each action statement for the name of the FACILITY class that is checked.
LIST [NUMBER]
List all the containers.
Facility class checked is STGADMIN.ADR.LIST.CLOUD
LIST CONTAINER(container) [NUMBER]
List all the objects in specified container.
Facility class checked is STGADMIN.ADR.LIST.CLOUD
FIND CONTAINER(container)
Reports if the specified container exists.
Facility class checked is STGADMIN.ADR.LIST.CLOUD
Statement syntax
DELETE CONTAINER(container) [PURGE | CLEAR]
Delete the specified container. If the container is not empty and contains objects this operation will not proceed. If the PURGE option is specified, all the objects in the container are deleted and then the container is deleted. If the CLEAR option is specified, all the objects in the container are deleted and the container is NOT deleted.
Facility class checked is STGADMIN.ADR.DELETE.CLOUD
CREATE CONTAINER(container)
Creates the specified container.
Facility class checked is STGADMIN.ADR.CREATE.CLOUD
CREATE CONTAINER(container) OBJECT(object)
Creates an empty object in the specified container.
Facility class checked is STGADMIN.ADR.CREATE.CLOUD
INFO CONTAINER(container) OBJECT(object)
Reports the size in bytes of the specified object in the specified container.
Facility class checked is STGADMIN.ADR.INFO.CLOUD
GET CONTAINER(container) OBJECT(object)
Provides a hex dump of the contents of the specified object in the specified container.
Facility class checked is STGADMIN.ADR.LIST.CLOUD
LISTBACKUPS CONTAINER(container)
Lists the backups in the specified container. Reports the catalog status of the backup data set object along with the creation and expiration dates.
Facility class checked is STGADMIN.ADR.LIST.CLOUD
DELETEBACKUPS CONTAINER(container)
Reports each backup not cataloged and deletes the backup along with its data set objects.
Facility class checked is STGADMIN.ADR.DELETE.CLOUD
You may add the optional keyword NOERR to any statement that sets the step execution return code value to zero.
Statements scanning includes columns 1-72 and are continued by specifying a “-” character at the end of a statement to continue it onto the next line of input. For example:
//SYSIN DD * DELETE CONTAINER(mycontainer) - OBJECT(myobject) /*