You have a JCL job that creates a temporary output data set. How would you use the DISP parameter to ensure the data set is automatically deleted after job completion?

  • DISP=(MOD,DELETE,DELETE)
  • DISP=(MOD,KEEP,KEEP)
  • DISP=(NEW,CATLG,DELETE)
  • DISP=(NEW,DELETE,DELETE)
The DISP parameter with (NEW,CATLG,DELETE) specifies a new data set, catalogs it, and deletes it automatically after the job completes.
Add your answer
Loading...

Leave a comment

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