Start of change

DSNU1573I csect-name - object-type object-qualifier.object-name WAS SPECIFIED AS BOTH A TARGET AND SOURCE

Explanation

A table space, index space, or index can be specified either as a target or source, but not both, in a list of object pairs, even if the DSNUM specification is different.

This message is issued for the RECOVER utility when the FROM option is specified and the identified table space, index space, or index was specified as both a target and a source. Even if the DSNUM specification is different for one or more target and source object pairs, this specification is not allowed.

For example, in the following incorrect RECOVER utility control statement, table space TSA is specified as a source for table space TSB and as a target for table space TSC, which is not allowed:

RECOVER TABLESPACE TSB DSNUM 1 FROM TSA DSNUM 1
TABLESPACE TSA DSNUM 2 FROM TSC DSNUM 2

The following specification is allowed:

RECOVER TABLESPACE TSB DSNUM 1 FROM TSA DSNUM 1
TABLESPACE TSB DSNUM 2 FROM TSA DSNUM 2
csect-name
The name of the control section that issued the message.
object-type
The type of object. Possible values are:
TABLESPACE
Table space
INDEXSPACE
Index space
INDEX
Index
object-qualifier.object-name
The name of the table space, index space, or index, as a qualified name.

System action

If OPTIONS EVENT(ITEMERROR,SKIP) was specified, RECOVER processes the first source and target object pair for this object, but skips subsequent object pairs with this object. Other object pairs without errors are processed.

Otherwise, processing terminates.

User response

Evaluate and correct the utility control statement. Then resubmit the job.

Severity

8 (error)

End of change