IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Explain clearly about INTRDR in DD statement


IBM Mainframe Forums -> JCL & VSAM
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
prasannanjaneya
Warnings : 1

New User


Joined: 14 Mar 2005
Posts: 10
Location: pune

PostPosted: Mon May 23, 2005 8:50 pm
Reply with quote

Code:

//SUBMIT EXEC PGM=IKJEFT01,DYNAMNBR=50,
// REGION=4096K
//SYSTSPRT DD SYSOUT=*
//SYSTSIN DD *
PROF PREFIX(USERID)
SUBMIT 'LIB(JOB1)'
SUBMIT 'LIB(JOB2)'
SUBMIT 'LIB(JOB3)'


in this job, the jobs job1,job2 and job3 will execute simultaneously or one after another.

2)issuing jes2 and jes3 commands means, where we have to issue these jes2 and jes3 commands. please clarify in this in brief.

3)any body can explain clearly about intrdr in dd statement. i mean about internal reader in jcl.

adv thanks,
prasanna.
Back to top
View user's profile Send private message
MGIndaco

Active User


Joined: 10 Mar 2005
Posts: 432
Location: Milan, Italy

PostPosted: Mon May 23, 2005 10:06 pm
Reply with quote

1) The jobs will executed simultaneously and the first that will run before the other is the less complex for the initiator.

2) wow.... I think that JES2 and JES3 are not as easy to explain as you
can think... It is a subsystem of MVS(Job Entry Subsistem) and allow to operator or the application programmer to manage all the request that, with a job or with some online command, we are asking to the system.
In particular you must know that JES manage all the submit and give us the priority(in fact it is also a scheduler), manage the resource that we need, manage our stepjob and check its correctness, and manage the remote message and operation that you ask to the network.
Mainly, learning JCL you study its five control steps that are:

    Input
    Conversion
    Execution
    Output
    Purge

And all this five steps are processed from one function of JES that's Internal Reader or Reader.

For this explaination, for the question above, the order depend of the time that your jcl spend in the first step(Input) and the second(Conversion).

3) I think that this question is answered above...

I'm sorry for my poor english in my explanation but I assure you that is my best... icon_redface.gif
Back to top
View user's profile Send private message
superk

Global Moderator


Joined: 26 Apr 2004
Posts: 4652
Location: Raleigh, NC, USA

PostPosted: Tue May 24, 2005 2:10 am
Reply with quote

3. In the "old" days, all JCL, as well as most original data, used to be punched onto 80-column cards and fed into the mainframe through a card reader. Today, we create JCL using terminals and stage it in libraries. The JCL "reader" is no longer a physical device - but it is "simulated" - and it is called the "internal" reader. Putting JCL into the "internal" reader is done by coding the output destination for a file to the "internal" reader and writing the desired JCL into it. This is usually done by coding ( for example )

//jobjcl DD SYSOUT=(,INTRDR)

When the dataset is closed and released, the system will "read" and process the contents just as if it were a submitted job.

Here is some more Internal Reader information:

publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/HAS1A431/3.25?DT=20001026113913
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> JCL & VSAM

 


Similar Topics
Topic Forum Replies
No new posts DB2 Statistics - Using EXPLAIN and qu... DB2 1
No new posts JOIN STATEMENT PERFORMANCE. DFSORT/ICETOOL 12
No new posts Relate COBOL statements to EGL statement All Other Mainframe Topics 0
No new posts process statement for SUPREC, CMPCOLM... TSO/ISPF 4
No new posts SYNCSORT/ICETOOL JOINKEYS SORT Statem... DFSORT/ICETOOL 13
Search our Forums:

Back to Top