GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Interview Questions  >  Mainframe  >  JCL

 Print  |  
Question:  There are 100 steps in a job card.If we want to execute 100th step,what to do? and but remaining 99 steps should not execute



September 09, 2006 08:43:44 #8
 Selvam   Member Since: Visitor    Total Comments: N/A 

RE: there are 100 steps in a jobcard.If we want to exe...
 

to execute only a particular step in between we can use

RESTART = <stepname> e.g., RESTART = STEP100

and to bypass all other following steps we can use Null statement (//) after STEP100 and the Jop will be end at STEP100

     

 

Back To Question