How can we see data in TEMPARARY DATA SET in JCL ?

Answers were Sorted based on User's Feedback



How can we see data in TEMPARARY DATA SET in JCL ?..

Answer / praveen bejjanki

Some info regarding Temporary dataset:
1) They start with '&&'
2) They can be a maximum of 8char's, The first character
should be a Alphabet or National character remaining char's
can be numeric also.
3) These dataset's will usually have the disp parm
as 'Pass' Which indicates that the dataset is passed to the
subsequent steps in the jcl. But at the end of the jcl the
dataset will be deleted.
So, It's impossible to view the data in Temporary dataset.

@All: Correct me if i'm wrong.

Is This Answer Correct ?    7 Yes 1 No

How can we see data in TEMPARARY DATA SET in JCL ?..

Answer / paddu

//job1 job a123,paddu
// step1 exec pgm=program1,
//dd1 dd dsn=&&temp.

temporary dataset names are indicated by &&.

Is This Answer Correct ?    12 Yes 8 No

How can we see data in TEMPARARY DATA SET in JCL ?..

Answer / shriram10

- No, you can not see data in temporary data set.
- Because temporary data sets are created during jobs
execution and terminated after completion of the job.
- It is used to release the space utilized by the data set
after termination of the job.

correct me if i am wrong
thanks

Is This Answer Correct ?    1 Yes 0 No

How can we see data in TEMPARARY DATA SET in JCL ?..

Answer / siva

Temporary dataset are recognized by &&

They are created during the time of  job execution once the job is executed they get deleted.

Is This Answer Correct ?    0 Yes 0 No

How can we see data in TEMPARARY DATA SET in JCL ?..

Answer / eswaran

//FSS127A JOB NOTIFY=&SYSUID,PRTY=15
//STEP1 EXEC PGM=IEFBBR14
//DD1 DD DSN=&&DATASETNAME
//
TEMPORARY DATASET NAME SPECIFIED BY &&

Is This Answer Correct ?    6 Yes 7 No

How can we see data in TEMPARARY DATA SET in JCL ?..

Answer / harsha

Yes, we can read data from Temporary dataset as long as job
is running. Once the job is executed, temporary datet is
deleted.

Is This Answer Correct ?    1 Yes 2 No

How can we see data in TEMPARARY DATA SET in JCL ?..

Answer / rahul

We cannot browse temp datasets, rest to see the tem
datasets , above answers are correct.

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More JCL Interview Questions

IN MY JCL I VE 8 STEPS I WANT TO EXCUTE STEP 8 FIRST THEN EXCUTE STEP 4 ,HOW WILL EXCUTE STEP 8 BEFORE STEP 4?

7 Answers   Cognizant, IBM, IGT,


Write a JCL by using the below requirement: File1 =1, File2 =11 and output needs to come as File3 =111?

8 Answers   Saggezza,


proc1,proc2,up to proc5 is there if i want to call proc1 and proc5how can u write the code

2 Answers  


i just need the first and last record from a sequencial file?how

2 Answers  


Explain about LMMFIND - find a library member

1 Answers  






I have a JCL which 20 steps. How do I execute 17 th step alone (It should execute only 17ths tep.and it should not execute 18,19,20 steps??

9 Answers   IBM, Infosys, TCS, Xansa, Xchanging,


i have a jcl calling proc which has 10 steps, i want to execute from step5 to step10, where can i code RESTART and COND parameter?

6 Answers   IBM,


What is the function of the dd avgrec keyword in sms datasets?

0 Answers  


Is condition checking possible in jcl?

0 Answers  


Ques: How can we code COND parameter in a JCL so that only even steps (or only odd steps) get execute??

3 Answers   HSBC,


is step name is compulsory in jcl ?

2 Answers  


Can we delete the data using IEFBR14 , IEBGENER??

5 Answers   Kanbay,


Categories