how to run batch program without jcl?

Answers were Sorted based on User's Feedback



how to run batch program without jcl?..

Answer / richards

No.. A JCL is needed is submit a Cobol Batch program..

Is This Answer Correct ?    14 Yes 0 No

how to run batch program without jcl?..

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

how to run batch program without jcl?..

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

how to run batch program without jcl?..

Answer / Sheetal Kumari

Batch programs are typically run using JCL (Job Control Language) on mainframe systems. However, it is possible to run a batch program without JCL by using shell scripts or other programming languages that can execute the same commands as the batch job steps. For example, you could write a script in Python or another language to perform the same actions as your batch job.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More JCL Interview Questions

In sms datasets, what is the function of the dd avgrec keyword?

1 Answers  


How do you check the syntax of a JCL without running it?

17 Answers  


What are isolation levels? Where do we need to specify them in compiling JCL?

3 Answers  


What are the parameters that are used in creating a gdg?

1 Answers  


What does SYSIN * indicate?

2 Answers  


What is the function of the dd avgrec keyword in sms datasets?

1 Answers  


have in 100 records in a file i want to read first 3 records and skip next 3 records and agan i want to read 3 records and again i want to skip 3 records... run a loop from record one to 10 evaluate i/3 if comes even then skip else write to output file

1 Answers  


What are hierarchy levels in jcl?

1 Answers  


I have 255 procedures in a job, each procedure contain 2 steps.can we execute this job?

2 Answers  


How to create delta file using JCL

1 Answers   CTC,


IN DFSORT sum fields=none is usec to remove duplicates.how to write the duplicates in another dataset?

2 Answers  


What does a disposition of (MOD,DELETE,DELETE) mean ?

1 Answers  


Categories