how are instream data terminated?
Answers were Sorted based on User's Feedback
Answer / balmukund
Instream data termination in JCL can we done by /* after
SYSIN DD *. For example.
PGM1 EXEC PGM=PGM1
---
---
SYSIN DD *
istream data
/* termination of instream data.
| Is This Answer Correct ? | 10 Yes | 2 No |
Answer / karthik
//Sysin DD *
Instream data
.
.
/*(end of instream data)
OR we can use DLM parameters
//Sysin DD data, dlm='xx'
Instream Data
/*
.
XX
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / sanjayreddyguna
//sysin dd *
fh
h
hj
gh
/*------>this is delimiter for instrem data
OR
//sysin dd data,dlm=A
jhj
hl
kl
A----------->this is allso delimiter for instream data
| Is This Answer Correct ? | 0 Yes | 0 No |
What is a JCL Command statement ?
If a job has 3 steps and step 1 and step 3 should get executed and step 2 should not get executed irrespective of the return code from the previous steps. How can it be done?
How to run cobol program using jcl?
What is a procedure?
i have 1000 records in input file and i want to sort it and the first 200 records to be placed in output file. how to do that??
Explain about File Tailoring
THERE IS ONE STEP AS BELOW: //STEPJS060 EXEC PGM=XYX, COND=((200,EQ,JS010),(0,NE,JS020.C),EVEN) COULD ANY ONE EXPLAIN HOW COND PARAMETER WORKS HERE? I AM CONFUSED BECOZ OF "EVEN".
How jcl is used for testing batch programs?
a dd statement has 2 types of parameters. Name them?
What are isolation levels? Where do we need to specify them in compiling JCL?
Can a PS file be read in reverse order?If so,how
How to execute 300 steps in a Job?