Author |
Message |
Topic: eclipse plugins |
tcb
Replies: 6
Views: 5261
|
Forum: Application Programming Posted: Wed Sep 14, 2011 1:34 am Subject: eclipse plugins |
Editing, file management, submitting jcl to batch on the Eclipse platform.
It's unlikely you'll find such alternative.
But you can try to use RSE. In fact, RDz uses it (z/OS implementation) ... |
Topic: Connecting to Unix - no output |
tcb
Replies: 11
Views: 6514
|
Forum: Job Control Language(JCL) Posted: Mon Jul 27, 2009 11:50 am Subject: Connecting to Unix - no output |
Ram,
you will get
ls: FSUM6785 File or directory "/asdasd" is not found
|
Topic: Connecting to Unix - no output |
tcb
Replies: 11
Views: 6514
|
Forum: Job Control Language(JCL) Posted: Mon Jul 27, 2009 11:06 am Subject: Connecting to Unix - no output |
Hi, Steve.
You can try this:
//TSO EXEC PGM=IKJEFT01
//SYSEXEC DD DISP=SHR,DSN=SYS1.SBPXEXEC
//SYSTSPRT DD SYSOUT=*
//SYSTSIN DD *
OSHELL ... |
Topic: Document on DATA MANAGEMENT |
tcb
Replies: 2
Views: 2507
|
Forum: Data Management Posted: Mon Feb 27, 2006 6:42 am Subject: Document on DATA MANAGEMENT |
Can anybody give me refer to any good book about data (especially tape) managment? |
Topic: How to issue Operator command through JCL !! |
tcb
Replies: 4
Views: 7047
|
Forum: Job Control Language(JCL) Posted: Thu Jan 26, 2006 3:38 am Subject: How to issue Operator command through JCL !! |
amit4u79,
try to run following jcl:
//MVSCMD JOB
// COMMAND 'CMD'
where CMD is your mvs command.
Then in syslog should be appear wtor
IEFC166D REPLY Y/N TO EXECUTE/SUPPRESS COMMAND
Rep ... |
Topic: Get job information from JES |
tcb
Replies: 7
Views: 4919
|
Forum: Job Control Language(JCL) Posted: Sat Jan 14, 2006 5:01 am Subject: Get job information from JES |
Luis Pinto,
you can try to run jcl and get joblog by ftp. Then parse joblog to find RC and time. |
Topic: Full volume backups |
tcb
Replies: 4
Views: 3183
|
Forum: Data Management Posted: Tue Jan 10, 2006 12:46 am Subject: Full volume backups |
Hi, Xevious.
With DFSMS you can try IBM Tivoli Tape Optimizer. This is tape copy utility but you can use it to backup your tapes.
http://www.ibm.com/software/tivoli/products/tape-optimizer-zos/ |
Topic: How Volumes be defined by SMS ? |
tcb
Replies: 3
Views: 1926
|
Forum: Job Control Language(JCL) Posted: Tue Dec 20, 2005 8:15 am Subject: How Volumes be defined by SMS ? |
Andy,
you should use ISMF.
Check this guide:
http://publibfp.boulder.ibm.com/cgi-bin/bookmgr/BOOKS/DGT1I502/CCONTENTS?DT=19951019205025 |
Topic: Reference to instream DD from previous step |
tcb
Replies: 11
Views: 9568
|
Forum: Job Control Language(JCL) Posted: Mon Nov 28, 2005 2:11 am Subject: Reference to instream DD from previous step |
Why not put the first instream data in a dataset and refer that dataset in all other steps?
I have many JCLs with various instream data. That isn't good idea to create one more data set when I crea ... |
Topic: Reference to instream DD from previous step |
tcb
Replies: 11
Views: 9568
|
Forum: Job Control Language(JCL) Posted: Fri Nov 25, 2005 1:53 am Subject: Reference to instream DD from previous step |
I haven't tried this, but it seems it should work: Add an IEBGENER step before these steps. Use that to copy the data to a temporary data set and use refer backs to reference the SYSUT2 (disp=new,pas ... |
Topic: Reference to instream DD from previous step |
tcb
Replies: 11
Views: 9568
|
Forum: Job Control Language(JCL) Posted: Thu Nov 24, 2005 8:57 am Subject: Reference to instream DD from previous step |
Please post the complete JCL you used so that we can see what might have gone wrong.
Looking at your sysout, I can guess only one thing. You are referring to a already created dataset (by backward ... |
Topic: Reference to instream DD from previous step |
tcb
Replies: 11
Views: 9568
|
Forum: Job Control Language(JCL) Posted: Thu Nov 24, 2005 8:00 am Subject: Reference to instream DD from previous step |
Did you really read the document I have supplied? In the same link at the bottom you have a link for examples of backward reference and in that example2 clearly shows how to reference a p ... |
Topic: Reference to instream DD from previous step |
tcb
Replies: 11
Views: 9568
|
Forum: Job Control Language(JCL) Posted: Thu Nov 24, 2005 1:54 am Subject: Reference to instream DD from previous step |
Please post your code to guide you in a better way.
//STEP1 EXEC PGM=...
//PARMS1 DD *
..
/*
//STEP2 EXEC PGM=...
//PARMS2 DD *
..
/*
PARMS1 and PARMS2 describe indentical data. ... |
Topic: Reference to instream DD from previous step |
tcb
Replies: 11
Views: 9568
|
Forum: Job Control Language(JCL) Posted: Wed Nov 23, 2005 7:47 am Subject: Reference to instream DD from previous step |
Hi, all.
I have two identical instream DDs. Can I make reference from 2nd DD to 1st? DDs place in different steps.
Thanks. |
|