Copyright Digital Equipment Corp. All rights reserved.

Examples

   1.$ PRINT/HOLD   MYFILE.DAT
       Job MYFILE (queue SYS$PRINT, entry 112) holding
     $ SET ENTRY 112/RELEASE/JOB_COUNT=3

     The PRINT command in this example requests that the file
     MYFILE.DAT be queued to the system printer, but placed in
     a hold status. The SET ENTRY command releases the job for
     printing and requests that three copies of the job be printed.

   2.$ SUBMIT CLIMATE
       Job CLIMATE (queue SYS$BATCH, entry 211) pending
     $ SET ENTRY 211/HOLD/NAME=TEMP

     The SUBMIT command in this example queues the command procedure
     CLIMATE.COM for processing as a batch job. The SET ENTRY
     command places the job in a hold state and changes the job name
     to TEMP, assuming that the job has not yet begun execution.

   3.$ PRINT/FLAG=ALL/AFTER=20:00 MEMO.MEM, LETTER.MEM, REPORT.MEM/SPACE
       Job MEMO (queue SYS$PRINT, entry 172) holding until 20:00
     $ SET ENTRY 172 /BURST/NOSPACE/HEADER

     The PRINT command in this example requests that three files be
     printed after 8:00 P.M. on the default printer with flag pages
     preceding each file. It also requests that the file REPORT.MEM
     be double-spaced. Later a SET ENTRY command calls for a burst
     page at the beginning of each file and requests that all files
     in the job be single-spaced. This command also requests that
     headers be printed on each page of each file in the job.

   4.$ SUBMIT/HOLD/QUEUE=ANYRADQ  TEST.COM
     Job TEST (queue ANYRADQ, entry 23) holding

     $ SET ENTRY 23 /RAD=1
     $ SHOW ENTRY/FULL 23
      Entry  Jobname         Username     Blocks  Status
      -----  -------         --------     ------  ------
         23  TEST            SYSTEM               Holding
          On idle batch queue ANYRADQ
          Submitted 24-JUL-2001 14:19:37.44 /KEEP /NOPRINT /PRIORITY=100 /RAD=0
          File: _$1$DKB200:[SWEENEY.CLIUTL]TEST.COM;1

     In this example, TEST.COM is submitted to the queue ANYRADQ,
     and the SET ENTRY command is used to set the RAD to 1.