By looking into the Jcl can we identify the dataset is VSAM?
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
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 |
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 |
how many buffers are allocated to vsam ksds and esds?
What is an RBA in rrds? What does it do? What is it used for?
explain in brief why do vsam take more disk space than other utilities?
what parameter in the define aix option is used to determine the maximum number of duplicate keys allowable ?
what is difference between repro and export? if any one know this plz tell me
What is the catalog?
Is CA(Control Area) is part of CI(Control Interval)
Explain about the file objects in vsam?
How do I declare the KSDS vsam so that I can store a reocrd with variable length?.
What is the purpose of relative record data set used in vsam?
can you specify some the distinctive features of a ksds, key sequenced dataset?
On which dataset you can have alt index?