When dealing with temporary data sets in JCL, how can you ensure they are automatically deleted after job execution?

  • Specify SPACE=(0,0) in the DD statement
  • Use DISP=DELETE in the DD statement
  • Use DISP=MOD in the DD statement
  • Use DISP=NEW in the DD statement
DISP=DELETE is used to specify that a dataset should be deleted after the job completes, handling temporary data sets
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *