Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the difference between SYSOUT and SYSPRINT of a job?

Tags:

jcl

While coding a JCL, we give SYSOUT and SYSPRINT DDs. Which type of output goes to SYSOUT and what else to SYSPRINT?

like image 360
Raja Reddy Avatar asked Jun 04 '10 01:06

Raja Reddy


1 Answers

SYSOUT is always allocated and gets among other things all the output from the System level process (including any messages about the JCL itself, performance stats, error messages etc.)

SYSPRINT is just another DD which, by convention, is used by utility programs for thier output.

like image 174
James Anderson Avatar answered Sep 28 '22 09:09

James Anderson