Skip to main content

Does JCL parameter RESTART= work in ES

  • October 30, 2020
  • 4 replies
  • 0 views

We use the RESTART= parameter in JCL to do restarts, does this work in Enterprise Server?  I see that ES has command line options to control RESTART, but is the JCL parameter supported?


#EnterpriseServer

4 replies

  • Rocketeer
  • 19312 replies
  • October 30, 2020

We use the RESTART= parameter in JCL to do restarts, does this work in Enterprise Server?  I see that ES has command line options to control RESTART, but is the JCL parameter supported?


#EnterpriseServer
Yes Enterprise Server can be configured to support restart processing. See these links for more detail

https://www.microfocus.com/documentation/enterprise-developer/ed60/ED-Eclipse/BKCBCBJCRGS012.html

https://www.microfocus.com/documentation/enterprise-developer/ed60/ED-Eclipse/BKCBCBJCRGS011.html

Or search the documentation for restarting jobs



  • 0 replies
  • October 30, 2020
Yes Enterprise Server can be configured to support restart processing. See these links for more detail

https://www.microfocus.com/documentation/enterprise-developer/ed60/ED-Eclipse/BKCBCBJCRGS012.html

https://www.microfocus.com/documentation/enterprise-developer/ed60/ED-Eclipse/BKCBCBJCRGS011.html

Or search the documentation for restarting jobs


I am familiar with the command line parameters to do restarts in ES, but as I stated, we use the JCL parameter RESTART= in the JCL to do restarts today.  I take it from your response that this Parameter is NOT supported in Enterprise Server and you must use the command line and associated environment variables to do a job restart.


  • Rocketeer
  • 19312 replies
  • October 30, 2020

I am familiar with the command line parameters to do restarts in ES, but as I stated, we use the JCL parameter RESTART= in the JCL to do restarts today.  I take it from your response that this Parameter is NOT supported in Enterprise Server and you must use the command line and associated environment variables to do a job restart.

Using RESTART= in your JCL is supported. You do need to set the environment variables ES_JES_RESTART in the region at a minimum as Enterprise Server needs to keep track of job status to know the staus of datasets, etc. Depending on the behavior you expect for datasets in a restart you will likely want to also set MF_UCC11 though this is independent from restarts.



You don't say how you are submitting the JCL, Web interface, MFBSI, CASSUB.



  • 0 replies
  • October 30, 2020
Using RESTART= in your JCL is supported. You do need to set the environment variables ES_JES_RESTART in the region at a minimum as Enterprise Server needs to keep track of job status to know the staus of datasets, etc. Depending on the behavior you expect for datasets in a restart you will likely want to also set MF_UCC11 though this is independent from restarts.



You don't say how you are submitting the JCL, Web interface, MFBSI, CASSUB.


We are using the MFBSI interface to submit the job, although there may be cases where we use CASSUB directly.

Thanks for the information on RESTART= , documentation doesn't mention use of RESTART= , so wasn't sure.