By looking into the Jcl can we identify the dataset is VSAM?

Answers were Sorted based on User's Feedback



By looking into the Jcl can we identify the dataset is VSAM?..

Answer / shilpa umesh

In any VSAM file the last qualifier is DATA, the only KSDS
file contain DATA and INDEX. If any dataset contain these
qualifier the dataset is VSAM only

EXAMPLE. VSAM FILE
TCOM.MNMT.X0060X.DDD.D250510
TCOM.MNMT.X0060X.DDD.D250510.DATA
TCOM.MNMT.X0060X.DDD.D250510.INDEX

EXAMPLE. SWQUENTIAL FILE
TCOM.MNMT.X0060X.DDD.D250510

Thanks,
Shilpa

Is This Answer Correct ?    4 Yes 0 No

By looking into the Jcl can we identify the dataset is VSAM?..

Answer / mhdee

Most of the time the answer is YES, because most shops have
a standarsd naming for the high qualifire node for VSAM
files. Other than that you have to use TSO option 3.4 "Data
Set List Utility", which will give you the DATA and INDEX
part of the file.

Is This Answer Correct ?    0 Yes 0 No

By looking into the Jcl can we identify the dataset is VSAM?..

Answer / amjtih

if it is a VSAM Define step, yes, we can. if using an
existing VSAM file, by looking to JCL,its difficult
provided if there is no defined naming convention.
other than that, just try to open via ispf 3.4 option, and
if it is VSAM, that will show the message. if KSDS, then
Data and Index elements can view.

Is This Answer Correct ?    0 Yes 0 No

By looking into the Jcl can we identify the dataset is VSAM?..

Answer / madan kumar

from define cluster statement we can easily say,
we specify parameters
INDEXED ---> for KSDS.
NUMBERED ---> for RRDS.
nothing will be given for ESDS

Is This Answer Correct ?    0 Yes 0 No

By looking into the Jcl can we identify the dataset is VSAM?..

Answer / raghavendra

Incase of KSDS, file will have '.CL' as the last qualifier
of the Dataset. This helps to identify, whether the File is
Flat file or VSAM. However, the VSAM Files can be created
without this Qualifier or with Flat file naming Convention.
For ex: WIP161.DDIO.XPD -- DDIO FILE for Xpeditor. This
file can be either VSAM or Flat File. In such cases, it's
difficult to distinguish.
Since most of the VSAM Files are created with '.cl' as the
last qualifier, files can be identified quickly inthe JCL
with this qualifier.

Thank You,
Raghu.

Is This Answer Correct ?    0 Yes 6 No

Post New Answer

More VSAM Interview Questions

What is a VSAM split?

2 Answers  


How to get the last record in vsam file in cluster? And how can u get the ksds file records into cobol program?

0 Answers  


in a cobol select statement for a ksds can you tell me what are the 3 possibilities for access?

0 Answers   IBM,


what is meant by dirty read in vsam?

0 Answers   IBM,


What is FREESPACE ?

2 Answers  






What is the significance of the SHAREOPTIONS parameter?

1 Answers   IBM,


What is the use of VSAM files? How to read this ?

3 Answers   CTS,


what is the meaning of dynamic processing in vsam?

0 Answers   IBM,


What is a ci split? What is a ca split?

0 Answers  


Syntax of AMS modal commands ?

1 Answers   IBM,


I have three fields in a Variable VSAM file X(2) Y(10) occurs X times Z(02) Say for the first record X=2 then the length of the file is 2+(10*3)+2=34 second record, x=4 then 4+(10*4)+2=46 If any time if the field x is updated then the total length changes. Is it feasible? Is it

2 Answers  


How do you define an ALTINDX ? How do you use ALTINDXs in batch, CICS pgm?s ?

2 Answers   IBM,


Categories