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

Difference between SYSIN DD * and SYSIN DD DATA


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

New User


Joined: 06 Apr 2005
Posts: 10

PostPosted: Fri Apr 08, 2005 5:39 pm
Reply with quote

What is the difference between SYSIN DD * and SYSIN DD DATA?

Devi.
Back to top
View user's profile Send private message
superk

Global Moderator


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

PostPosted: Fri Apr 08, 2005 6:01 pm
Reply with quote

Nothing really, except that the input to SYSIN DD * ends at the next JCL statement, at the end of the job stream, or at the end delimiter /*.

If you code SYSIN DD DATA, then you must include the end delimiter /*.

All of these work the same:
Code:

//SYSIN DD *
THIS IS A TEST
//SYSPRINT DD SYSOUT=*

//SYSIN DD *
THIS IS A TEST
/*
//SYSPRINT DD SYSOUT=*

//SYSIN DD DATA
THIS IS A TEST
/*
//SYSPRINT DD SYSOUT=*

//SYSIN DD DATA,DLM=@@ <= delimiter override
THIS IS A TEST
@@
//SYSPRINT DD SYSOUT=*
Back to top
View user's profile Send private message
Suthandira

New User


Joined: 06 Apr 2005
Posts: 10

PostPosted: Fri Apr 08, 2005 6:31 pm
Reply with quote

Dear Superk,

THanks for ur immediate reply.

Devi.
Back to top
View user's profile Send private message
View previous topic : : View next topic  
Post new topic   Reply to topic All times are GMT + 6 Hours
Forum Index -> JCL & VSAM

 


Similar Topics
Topic Forum Replies
No new posts Structured Data and Nested Loops via ... COBOL Programming 0
No new posts Alternate key data extracttion COBOL Programming 13
No new posts db2 vs static data COBOL Programming 1
No new posts Difference between joblib and steplib JCL & VSAM 2
No new posts External data queue (changes?) CLIST & REXX 0
Search our Forums:


Back to Top