What is the in stream data ?

Questions by gowrinag

Showing Answers 1 - 15 of 15 Answers

Instream data is anything which we want to give as input to the JCL. It doesn't start with double slash(//) as it is not part of JCL. e.g//SYSIN DD * INSTREAM DATA /*End of instream data is denoted by delimeter ie /* Thanks

rj.krn.1987

  • Jan 14th, 2010
 

INSTREAM data means providing inputs to the JCL program than providing data in separate data set. Doesnt start with identifiers and is between delimiters.
 
syntax:

           //SYSIN DD *
           XYZ
           ABC
          /*
         //
    OR
         // SYSIN DD DATA , DLM = **
                 XYZ
                 ABC
         **
 CORRECT ME IF I AM WRONG .
          

Ishaan

  • Feb 19th, 2016
 

We need to use ACCEPT keyword in the COBOL program to read the instream data.

  Was this answer useful?  Yes

Akash

  • Nov 18th, 2016
 

In-stream data in JCL: which come under SYSIN DD * AND /*
//SYSIN DD *
HI
/*
HI will be in stream data.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions