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 MODELDSCB?
How to send data from cobol program to jcl?
How many types of libraries are there in JCL ?
using cursor how can you fetch more than one record into a variable
Can we DELETE all the Generations of a GDG at once, WITHOUT deleting the GDG itself ?
how can we pass external data to instream procedures
5 Answers IBM, Infosys, Ocwen,
What is the job entry system used in your project? based on what criteria the sequence of jobs are picked if priority is not mentioned in the job card?
describe the job statement, its meaning,syntax and significant keywords?
Which statement is used to identify the private libraries in job?
Hi, can any one tell about " How do u eliminate the duplicates "
In SPACE,what is directory,RLSE
I have a JCL with 10 steps, want to execute first 5 steps only, what are ways of doing it?is it possible to control through JOB card?