Previous Topic: WAIT Keyword—Synchronous or Asynchronous ProcessingNext Topic: WANAME Keyword—SYSOUT Person Delivery


Examples: WAIT keyword

This example adds data sets beginning with SYS1. to the Accounting Department, transmits them to all nodes whose names start with R and processes them synchronously:

TSS ADDTO(ACCDPT) DSNAME(SYS1.)
                  TARGET(R*)
                  WAIT(Y)

This example removes the data sets:

TSS REMOVE(ACCDPT) DSNAME(SYS1.)
                   TARGET(R*)
                   WAIT(Y)