i have job card like this
//job *****
//step1 exec pgm=iebgener
//sysut1 dd dsn=main.sss,disp=shr
// dd dsn=main1.sss,disp=shr
// dd dsn=main2.sss,disp=shr
//sysut2 dd dsn=out1.mmm ,disp=(new,catlg,delete)
dcb=( )
// sysin dd *
like this what i have to do to skip dsn=main1.sss
please giveme answer asap
Answers were Sorted based on User's Feedback
//* DD DSN=MAIN1.SSS,DISP=SHR
* WILL TREAT AS A COMMENT.
AND THE FOLLOWING DATA SET WILL BE SKIPED.
THANKS
| Is This Answer Correct ? | 18 Yes | 0 No |
Answer / mahesh babu
//sysut1 dd dsn
// dd dsn=main1.sss,disp=shr
// dd dsn=main2.sss,disp-shr
//sysut2 dd dsn=out1.mmm,disp=(new,catlg,delete)
dcb=()
//sysin dd *
| Is This Answer Correct ? | 0 Yes | 4 No |
How does jcl specify the job to the operating system?
What is DYNAMBR in jcl?
Hi Please try to be to-the-point. 1) How to INCLUDE a JCL segment in a JOB ? (A Small example) 2) What is SPOOL and what is SPOOL FULL ? and how to direct the output of a Jobstep to SPOOL ?
a input file contains 1000 records, how to move the first 500 record into one out put file and how to move to second 500 records to anothere output file
I have a File that has duplicate records. I need only those records that occur more than thrice.
What does the statements: typrun=scan and typrun=hold do in a JCL statement
suppose i have 10 job steps and i want to execute only step 6.How to write?
How do you designate a comment in JCL?
oza017.myorg.emp has 100 records ,oza018.myorg.staff has 200 records but 50 are the common records in both files copy all the common records into oza017.myorg.xyz dataset
I have an job having three job steps.Suppose i want to call a pgm in step2 and aproc in step3.How to write the code?
consider the following progrm statements MOVE 0 TO SW.NO.OF.REC PERFORM PRI-OUT UNTIL SW=1 DISPALY NO.OF.REC STOP RUN PRE-OUT READ IN-FILE AT END MOVE 1 TO SW WRITE OUO-REC FROM IN-REC ADD 1 TO NO.OF REC if the IN-FILE contains 1000 records what value will be displayed after the PERFORM is over? assume that N0.OF.REC has PIC 9(4) a.1000 b.1001 c.1 d.none of the above
what happens when time=0 is given in jcl code. what happens when blksize=0 is given in jcl code. what is symbolic and overriding parameters and a example program.