View previous topic :: View next topic |
Author |
Message |
ravii_cbe Beginner
Joined: 28 Mar 2003 Posts: 6 Topics: 5 Location: Chennai
|
Posted: Fri May 09, 2003 7:34 am Post subject: Difference |
|
|
Can anyone tell me the difference b/w these two?
//SYSPRINT DD SYSOUT=*
//SYSOUT DD SYSOUT=* _________________ Thanks & Regards
M. RaviShankar |
|
Back to top |
|
|
CaptBill Beginner
Joined: 02 Dec 2002 Posts: 100 Topics: 2 Location: Pasadena, California, USA
|
Posted: Fri May 09, 2003 10:03 am Post subject: |
|
|
Just the type of messages that will be sent there.
Some programs put messages out to SYSPRINT, other to SYSOUT, some to BOTH depending on the type of message. |
|
Back to top |
|
|
kolusu Site Admin
Joined: 26 Nov 2002 Posts: 12376 Topics: 75 Location: San Jose
|
Posted: Fri May 09, 2003 1:09 pm Post subject: |
|
|
Ravi,
SYSPRINT is basically an output data set which contains informational and error messages for that particular program/utility.some of the utilities which uses sysprint as output dataset are IDCAMS, EASYTRIEVE,DB2 Utilities...
SYSOUT is an system output dataset whose attributes are defined during JES initialization.It also contains informational and error messages as well any display statements in your COBOL program.Utilities like SORT will route their error and informational messages to sysout.
Take a look at the following link for better understanding of SYSOUT.
http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/IEA2B630/12.59?DT=20020717145248
Hope this helps...
cheers
kolusu |
|
Back to top |
|
|
|
|