One interviewer asked the following
I have 3 steps (Temporary data sets) first is refer to second, second is refer to third. Then what is the disp of third step?
What is the disp of third step?
-
- Posts: 32
- Joined: Mon Jun 07, 2010 3:58 pm
- Skillset: JCL COBOL VSAM DB2
- Referer: MY Faculty
- Location: Hyderabad
What is the disp of third step?
Thanks,
RamS
RamS
- dick scherrer
- Global moderator
- Posts: 6268
- Joined: Sat Jun 09, 2007 8:58 am
Re: What is the disp of third step?
Hello,
Cannot be answered - there is no such thing as "step disposition".
You need to stop posting these type of questions and do some reading in the appropriate manuals. . .
Cannot be answered - there is no such thing as "step disposition".
You need to stop posting these type of questions and do some reading in the appropriate manuals. . .
Hope this helps,
d.sch.
d.sch.
-
- Posts: 32
- Joined: Mon Jun 07, 2010 3:58 pm
- Skillset: JCL COBOL VSAM DB2
- Referer: MY Faculty
- Location: Hyderabad
Re: What is the disp of third step?
Hi Dick,
We too feel same. But in one interview questions we saw this type of questions. We all discussed together. Then for conclusion came to this forum.
We too feel same. But in one interview questions we saw this type of questions. We all discussed together. Then for conclusion came to this forum.
Thanks,
RamS
RamS
-
- Global moderator
- Posts: 2105
- Joined: Thu Jun 03, 2010 6:21 pm
- Skillset: Assembler, JCL, utilities
- Referer: zos.efglobe.com
Re: What is the disp of third step?
It's not very clear what the actual question is here. I suspect it is for JCL like this --The answer is the DISP in the third step is identical to the default DISP in the first step. In this case, since the first step specified DISP=NEW, its default is DISP=(NEW,DELETE), so the effective DISP in the third step is DISP=(OLD,DELETE). The same rule applies whether the data set is temporary, which is sort of implied by my JCL, or if a "permanent" data set name is specified in the DD statement in step A. You can find this in the JCL manual much more quickly than asking it here.
Code: Select all
//A EXEC PGM=---
//ADS DD DISP=(NEW,PASS),UNIT=SYSDA,SPACE=(TRK,(1,1)),...
//B EXEC PGM=---
//ADS DD DISP=(OLD,PASS),DSN=*.A.ADS
//C EXEC PGM=---
//ADS DD DISP=OLD,DSN=*.A.ADS
- dick scherrer
- Global moderator
- Posts: 6268
- Joined: Sat Jun 09, 2007 8:58 am
Re: What is the disp of third step?
Hello,
I suspect there was more involved and as such, we can't do much other than guess at what might have been actually asked.
One of the worst interviewing experiences i've heard of is when the interviewer and the applicants were conducting an interview in English and neither the interviewer nor the applicants used English as their first language and they also did not share a common first language. . .
It sounds like "we" and the interviewer were having major communication problems. I'm not sure how an interview works out when the interviewer asks this kind of question. . .We too feel same. But in one interview questions we saw this type of questions. We all discussed together.
I suspect there was more involved and as such, we can't do much other than guess at what might have been actually asked.
One of the worst interviewing experiences i've heard of is when the interviewer and the applicants were conducting an interview in English and neither the interviewer nor the applicants used English as their first language and they also did not share a common first language. . .
Hope this helps,
d.sch.
d.sch.
-
- Similar Topics
- Replies
- Views
- Last post
-
- 10
- 3629
-
by willy jensen
View the latest post
Tue Oct 31, 2023 8:36 pm
-
- 9
- 2835
-
by sergeyken
View the latest post
Thu Jan 09, 2025 11:59 pm
-
-
Sending o/p file's content to spool withot adding extra step
by Misha786 » Tue Jan 12, 2021 6:51 pm » in JCL - 4
- 2022
-
by sergeyken
View the latest post
Tue Jan 12, 2021 11:28 pm
-