how to run batch program without jcl?
Answers were Sorted based on User's Feedback
Answer / richards
No.. A JCL is needed is submit a Cobol Batch program..
| Is This Answer Correct ? | 14 Yes | 0 No |
Answer / sivakumar sekharannair
Batch programs are those are invoked by a language called
JCL. It can be executed either manually by submitting the
JCL or by a scheduler which has the particular JCL in it.
Manually submitted by user submitting the job.
Scheduler submission can be either time trigger or dataset
trigger.
If given a particular time, the scheduler trigers the job
in that particular time
Or
when the particular dataset is available in the mainframe
(should be cataloged and available)the job is triggered.
Never ever the batch job can run without a jcl
| Is This Answer Correct ? | 9 Yes | 0 No |
Answer / rishab
You need to compile your program.
Once the load module is generated you can use tso command:
TSO CALL 'abc.pqr.xyz(progA)'
Here abc.pqr.xyz is your load module
and progA is your program name (best practice to have your
program member name same as your program-id).
| Is This Answer Correct ? | 1 Yes | 0 No |
oza017.myorg.emp has 100 records ,oza018.myorg.staff has 200 records but 50 are the common records in both files copy all the common records into oza017.myorg.xyz dataset
what is use of disp parameter in dd statement?
is it possible to submitt more than one job in job card in jcl? and if yes than is it necessary to have the jobs same name?
What is the use of IEBGENER ?
Can there be 2 job statements in a JCL? If yes what is the purpose of doing tha?
what is the meaning of 'sysin dd dummy'
List in order the hierarchical levels of jcl?
IN DFSORT sum fields=none is usec to remove duplicates.how to write the duplicates in another dataset?
How many JOB statements a JCL can have ? If there are more than one JOB statements in a JCL, are they submitted in succession or in parallel ?
Hi Guyz, My requirement is to empty out a PS file but not to delete. How would I do that. Is there any Utility. If any other way, plz answer. Thanks.
9 Answers iGate, Lehman Brothers,
Explain the jcl exec statement?
We are aware of eliminating the duplicate records from outyput fiel using sort utility. Can we get the duplicate records in to another file in the Same sort utility?