how to set dependancy for jobs?
Answers were Sorted based on User's Feedback
Answer / praveen b
The dependencies can be set for jobs using scheduler,
The following are the most popular scheduler's
1) CA-7
2) Control-M
3) ESP
So on...
We can also use utilities to set dependencies among the jobs
Is This Answer Correct ? | 15 Yes | 5 No |
Answer / rashmi j
Use following DB panel to add dependecy
To add Job Dependency
DB.3.2
To add Dataset Dependency
DB.3.1
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / muttaiah
Hi Rajasekhar,
I think that will give only sucessor jobs list..
Can you explain clearly how to set dependancy using that in
CA-7.
Is This Answer Correct ? | 2 Yes | 0 No |
The disp in the JCL is MOD and the program opens the file in OUTPUT mode. What happens ? The disp in the JCL is SHR and the pgm opens the file in EXTEND mode. What happens ?
Please go thru the below points and let me know how to code this. 1. Sort the input dataset for the condition : Starting position is 37,length of the field is 13 based on character and in the ascending order , starting from position 25 length of 12 ,character and in the ascending order. Use a temporary dataset to hold the sorted file. 2. Use the temporary file created in the above step as the input for the next step. The next step is to execute a program and produce an output file. Use the temporary file created in the above as work file 1 and the output of the file to be created in this step work file 2.Also, pass a parameter to the program that is to be executed in this step. The parameter should have the current date in YYYYMMDD format. For the sake of convenience, you can use the below Job Name : Sample1 Input DSN : PCABDT11.CABD.TEST.INPUT Temporary DSN : Sort1 Output DSN : PCABDT11.CABD.TEST.OUTPUT Program Name : SAMPLE Thanks in Advance for your response.
a set statement is used to define commonly used symbolic across job steps or procedures. It initializes the previous values in the symbolic names. It has to be defined before the first use of the symbolic names in the jcl. State whether true or false?
How to compare 2 files using File-Aid?
Suppose I have Five Steps in PROC In this Case I want to Execute third Step in PROC using Main JCL don't use any COND Explain with Coding Thanks & Regards SHREE
What does it mean by Restart and Checkpoint in JCL ? How are checkpoints being taken and what is their usage ? How to use Checkpoint macro on a JOBSTEP ?
Suppose a proc step has a DD statement like //ABC DD DSN=TEST.FILE1,DISP=SHR DSN=TEST.FILE2,DISP=SHR and the above DD name is overridden from the JCL as given below //procstepname.ABC DD DSN=TEST.FILE3 - Will the DD statement now have just TEST.FILE3 or it will be TEST.FILE3 and TEST.FILE2? Suppose if it is overridden twice like //procstepname.ABC DD DSN=TEST.FILE3 //procstepname.ABC DD DSN=TEST.FILE4 Will this give a JCL error? If not, what will be final output?
What happens if both JOBLIB and STEPLIB is specified ?
how to allocate a dynamic dataset in jcl ?
What is the use of the utility DFSRRC00 in the JCL?
Can we have a JOBSTEP without any EXEC ?
In job processing, what happens in execution stage?