Start of change

DSNU1572I csect-name - SOURCE object-type object-qualifier.object-name WAS SPECIFIED FOR MORE THAN ONE TARGET

Explanation

A source table space, index space, or index can be specified for only one target table space, index space, or index, even if the DSNUM specification is different.

This message is issued for the RECOVER utility when the FROM option is specified and the identified source table space, index space, or index was specified more than once for different target table space, index space, or index. 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, source table space tsA is specified for two different target table spaces, tsB and tsC, which is not allowed:

RECOVER TABLESPACE TSB DSNUM 1 FROM TSA DSNUM 1
TABLESPACE TSC DSNUM 2 FROM TSA 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 source 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 source object, but skips subsequent object pairs with this source 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