VSAM FAQs

 VSAM FAQ

 Q1. What are the types of VSAM datasets?

A1. Entry sequenced datasets (ESDS), key sequenced datasets (KSDS) and relative record dataset (RRDS).

 

Q2. How are records stored in an ESDS, entry sequenced dataset?

A2. They are stored without respect to the contents of the records and in the order in which they are included in the file.

 

Q3. What is a CI, control interval?

A3. A control interval is the unit of information that VSAM transfers between virtual and auxiliary storage.

 

Q4. What are the distinctive features of a ksds, key sequenced dataset?

A4. The index and the distributed free space.

 

Q5. What is a CA, control area?

A5. A group of control intervals makes up a control area.

 

Q6. What is a sequence set?

A6. This is the part of the index that points to the CA and CI of the record being accessed.

 

Q7. What is the index set?

A7. This is the other part of the index. It has multiple levels with pointers that ultimately reach to the sequence set.

 

Q8. What is a cluster?

A8. A cluster is the combination of the index, sequence set and data portions of the dataset. The operating system gives program access to the cluster, ie. to all parts of the dataset simultaneously.

 

Q9. What is the catalog?

A9. The catalog contains the names of all datasets, VSAM and non-VSAM. It is used to access these datasets.

 

Q10. What is an alternate index?

A10. An AIX is a file that allows access to a VSAM dataset by a key other than the primary one.

 

Q11. What is a path?

A11. A path is a file that allows you to access a file by alternate index – the path provides an association between the AIX and the base cluster.

 

Q12. What is the upgrade set?

A12. The upgrade set is the list of all AIXes that VSAM must maintain for a specific base cluster, so that when data in the base cluster is updated, the AIX files are also updated.

 

Q13. What is free space?

A13. Free space is reserved within the data component of a KSDS to accommodate inserting new records.

 

Q14. What is a VSAM split?

A14. If there isn’t enough space in the control interval VSAM performs a control interval split by moving some records to the free control intervals. If there isn’t a free control interval VSAM performs a control area split by allocating a new control area and moving half of the control intervals to it.

 

Q15. What is the base cluster?

A15. The base cluster consists of the data component and the index component for the primary index of a KSDS.

 

Q16. Do primary key values have to be unique? Do alternate key values have to be unique?

A16. Primary key values must be unique; alternate key values need not be.

 

Q17. In the COBOL SELECT statement what is the ORGANIZATION for a KSDS?

A17. The ORGANIZATION is INDEXED.

 

Q18. In the COBOL SELECT statement for a KSDS what are the three possibilities for

ACCESS?

A18. ACCESS can be SEQUENTIAL, RANDOM or DYNAMIC.

 

Q19. What is the COBOL RECORD KEY clause?

  1. The RECORD KEY in the SELECT clause identifies the files primary key as it will be known to the program.

 

Q20. What is the purpose of the FILE STATUS clause in the SELECT statement?

A20. The FILE STATUS field identifies the field that VSAM uses to provide information about each I/O operation for the file.

 

Q21. If you wish to use the REWRITE command haw must the VSAM file be opened?

A21. It must be opened as I/O.

 

Q22. Explain the meaning and syntax for the START command.

A22. The START command is used read other than the next VSAM record. A value must be moved into the RECORD KEY. The KEY clause is optional, but it can be used to specify a relational (equal, less than, etc.) operator.

 

Q23. What is the meaning of dynamic processing?

A23. It’s rarely used. It means one program uses both sequential and random processing for a VSAM KSDS file.

 

Q24. Name some common VSAM error conditions and codes.

A24. They are end of file (10), duplicate key (22), record not found (23), VSAM logic error (90),  pen problem (92) and space problem (93).

 

Q25. What is the VSAM-code field?

A25. It is a COBOL II enhancement to VSAM batch processing expanding the FILE STATUS field. It is defined in WORKING-STORAGE as a six byte group item with three two byte elements, the normal return code, the function code and the feedback code.

 

Q26. What is a VSAM slot?

A26. A relative record dataset (RRDS) consists of a specified number of areas called slots. Each slot is identified by a relative record number (RRN) which indicates its relative position in the file.

 

Q27. What is the utility program closely associated with VSAM?

A27. IDCAMS, the access method services utility.

 

Q28. There are at least seven IDCAMS commands; name and explain each of them.

A28. ALTER modifies information for a catalog, alternate index, cluster or path. BLDINDEX builds the alternate index, ofcourse. DEFINE is used for ALTERNATEINDEX, CLUSTER or PATH. DELETE removes the catalog entry for a catalog, cluster, alternate index or path. LISTCAT lists information about the dataset. PRINT prints the dataset contents. REPRO copies records from one file to another.

 

Q29. What are the three levels of definition for the VSAM DEFINE?

A29. They are DEFINE CLUSTER, DATA and INDEX.

 

Q30. What is the significance of the SHAREOPTIONS parameter?

A30. It specifies how the file may be shared between jobs and between batch and CICS environments.

 

Q31. What is the meaning of the DEFINE MODEL parameter?

A31. It specifies whether Daniela Pestova or Yamila – oops! Wrong models! The MODEL parameter allows you to model your cluster by modelling it after an existing cluster.

 

Q32. How do you fix the problem associated with VSAM out of space condition?

A32. 1. Define new VSAM dataset allocated with more space.

  1. Use IDCAMS to REPRO the old VSAM file to new VSAM dataset.
  2. Use IDCAMS to ALTER / rename the old VSAM dataset or se IDCAMS to DELETE the old VSAM dataset.
  3. Use IDCAMS to ALTER / rename the new VSAM dataset to the name of the original VSAM dataset.

 

Q33. What is the meaning of VSAM RETURN-CODE 28?

A33. Out of space condition is raised.

 

Q34. Correction to the previous question – Yor can have ALT INDEX only on KSDS and ESDS – not RRDS.

A34. See the question for correction – you cannot have ALT INDEX for RRDS.

 

Q35 How many Alternate Indexes you can have on a dataset? – Remember ALT INDEX is possible only on KSDS and RRDS.

A35. 255 – but you must be a nut to have so many ALT Indexes on a dataset!

 

Q36. Is it slower if you access a record through ALT INDEX as compared to Primary INDEX?

A36. Yes. Why? Because the alternate key would first locate the primary key, which in turn locates the actual record. Needs twice the number of I/Os.

 

Q37. What is RECOVERY and SPEED parameters in DEFINE CLUSTER command?

A37. RECOVERY (default) and SPEED are mutually exclusive. Recovery pre-formats the control areas during the initial dataset load, if the job fails, you can restart but you must have a recovery routine already written to restart the job. SPEED does not pre-format the CAs. It is recommended that you specify SPEED to speed up your initial data load.

 

Q38. Describe SHAREOPTIONS parameter (SHR) in Define Cluster command.

A38. It defines the cross-region and cross-system sharing capabilities of the dataset. Syntax is SHR(CRvalue CSvalue) value 1 means multiple read OR single write (read integrity) 2 means multiple read AND single write (Write integrity) 3 means Multiple read AND multiple write 4 is same as 3, which refreshes the buffer with every random access. default is SHR(1 3).

 

Q39 What does the KEYRANGES parmater in Define Cluster commend do?

A39. It divides a large dataset into several volumes according to the Keyranges specified. e.g. KEYRANGES ((0000001 2999999) (3000000 5999999)). if the activity on the key ranges are evenly distributed, concurrent access is possible, which is a performance improvement.

 

Q40. What are the optional parameters to the input dataset While loading the empty cluster with the data records?

A40. 1)FROMADDRESS(address) 2)TOADDRESS(address) where ‘address’ specifies the RBA value of the key of the input record. 3)FROMNUMBER(rrn) 4)TONUMBER(rrn) where ‘rrn’ specifies the relative record number of the RRDS record 5)FROMKEY(key) 6)TOKEY(key) where ‘key’ specifies the key of the input record 7)SKIP(number) 8)COUNT(number) where ‘number’ specifies the number of records to skip or copy Ex: REPRO INFILE(DD1) OUTFILE(DD2) SKIP(9000) COUNT(700) – Skips the first 9000 records and begins copying at 9001 and copies 700 records from DD1 to DD2.

 

Q41. What is GDG means in VSAM?

A41. Generation Data Group

 

Q42. What is IDCAMS? and what is the purpose of it?.

A42. IDCAMS is an access method services utility used for creating, deleting, altering VSAM files and copying sequential file to a VSAM file, etc.

 

Q43. How to delete a member using JCL.

A43. Using IDCAMS a member can be deleted. DELETE ‘XXX.YYY(member)

 

Q44. What is the Difference between LDS & ESDS?

A44. These two datesets are VSAM datasets. ESDS maintains control information. But LDS does not maintains the control information.

 

Q45. A. Is a delete operation possible in an ESDS?B.Is rewrite operation possible in ESDS?

A45. A. No delete operation is not possible in VSAM ESDS.B. Yes rewrite operation is possible in an ESDS.

 

Q46. What is an alternate index and path?

A46. An alternate index is an another way of accessing key sequenced data record stored in a base cluster and path is the linkage which connect alternet index to its base cluster.

 

Q47. How many buffers are alloted to VSAM KSDS and ESDS?

A47.  2 data buffers by default for ESDS.for KSDS it allots 2 data buffers and 1 index buffers. each buffer is about 4k.

 

Q49. What’s the biggest disadvantage of using a VSAM dataset?

A49. FREE SPACE(FPSC)

 

Q50. What’s the device independent method to indicate where a Record is Stored?

A50. The answer is: By USING RBA(Relative Byte Address).

 

Q51. HOW MANY TIMES SECONDARY SPACE ALLOCATED?

A51. 122 TIMES

 

Q52. What is the RRN for the first record in RRDS?

A52. The answer is: 1

 

Q53. What is a Base Cluster?

A53. The Index and data components of a KSDS

 

Q54. If fspc(100 100) is specified does it mean that both the control interval and control area will be left empty because 100 % of both ci and ca are specified to be empty?

A54. No, they would not be left empty. One record will be written in each ci and 1 ci will be written for each ca.

 

Q55. What are the different types of VSAM files available?

A55. ESDS: Entry Sequence Data Set, KSDS: Key Sequence Data Set, RRDS: Relative Data Set

 

Q56. What is IDCAMS?

A56. IDCAMS is the Access Method Services program. You run the IDCAMS program and supply AMS commands through SYSIN. (examples of AMS commands are DELETE, DEFINE, REPRO etc..).

 

  1. Syntax of AMS modal commands? Note: these can be used only under IDCAMS and not from the TSO prompt.

A57. IF LASTCC(or MAXCC) >(or <,= etc..) value –

THEN –

DO –

command set (such as DELETE, DEFINE etc..)

 

ELSE –

DO –

command set

LASTCC – Condition code from the last function(such as delete) executed MAXCC – Max condition code that was returned by any of the previous functions SET is also a valid AMS command. SET LASTCC (or MAXCC) = value The maximum condition code is 16. A condition code of 4 indicates a warning. A condition code of 8 is usually Encountered on a DELETE of a dataset that is not present.

 

  1. Under IDCAMS , multiple functions can be executed, each of which returns a condition code. What will be the condition code returned to the operating system?

A58. The maximum condition code generated is returned as the condition code of the IDCAMS step.

 

  1. What is Control Interval, Control Area?

A59. Control Interval is analogous to a physical block for QSAM files. It is the unit of i/o. Must be between 512 bytes to 32 k. Usually either 2K or 4K. A larger control interval increases performance for sequential processing while the reverse is true for random access. Under CICS when a record is locked, the entire CI gets locked. Control area is a group of control intervals. CA is used during allocation. CA size is calculated based on the allocation type (cyl, tracks or records) and can be max of 1 cylinder.

 

  1. What is FREESPACE?

A60. Coded in the DEFINE as FREESPACE(ci ca) where ci is the percentage of each control interval to be left free for insertions, ca is the percentage of control intervals in each control area to be left empty.

 

  1. How do you decide on optimum values for CI, FREESPACE etc.
  2. CI size should be based on record length, type of processing. Usually CI is 4K. If record length is larger(>1K), chose 6K or 8K. FREESPACE should be large if more number of insertions are envisaged. Usual values are (20 20) when heavy updates are expected. CI size can be calculated.

 

  1. Would you specify FREESPACE for an ESDS?

A62. No. Because you cannot insert records in an ESDS, also when you rewrite a record, it must be of the same length. Thus putting any value for freespace does not make any sense.

 

  1. What is SHAREOPTS?

A63. SHAREOPTS is a parameter in the DEFINE and specifies how an object can be shared among users. It is coded as SHAREOPTS(a b), where a is the cross region share option ie how two or more jobs on a single system can share the file, while b is the cross system share option ie how two or more jobs on different MVS ‘s can share the file. Usual value is (2 3).

 

Q64. What is the meaning of each of the values in SHAREOPTS(2 3)?

A64. Value of 2 for cross region means that the file can be processed simultaneously by

multiple users provided only one of them is an updater. Value of 3 for cross system

means that any number of jobs can process the file for input or output (VSAM does

nothing to ensure integrity).

 

Q65. How do you define a KSDS?

A65. DEFINE CLUSTER(cluster name) with the INDEXED parameter. Also specify

the ds-name for the DATA component & the dataset INDEX component. Other

important parameters are RECORDSIZE, KEYS, SHAREOPTIONS.

 

Q66. Can AMS commands be run from the TSO prompt?

A66. Yes

 

Q67. How do you define an ALTINDX? How do you use ALTINDXs in batch, CICS programs?

  • DEFINE ALTERNATEINDEX. Important parameters are RELATE where you specify the base cluster name, KEYS, RECORDSIZE,SHAREOPTIONS,UNIQUEKEY(or NONUNIQUEKEY), DATA(ds-name for the data component), INDEX(ds-name for the index

component).

  • Then DEFINE PATH. Important parameters are NAME (ds-name for the path), PATHENTRY (ds-name of the alternate index name), UPDATE(or NOUPDATE) which specifies whether an alt index is updated when a update to the base cluster takes place.
  • Then BLDINDEX. Parameters are INDATASET(ds-name of base cluster), OUTDATASET(ds-name of AIX). If you use INFILE or OUTFILE specify the dd-name after declaring it in JCL.
  • Using alternate indexes in batch programs:

In the JCL, you must have DD statements for the cluster and for the path(s). In the Cobol program, SELECT .. ASSIGN TO dd-name for base cluster RECORD KEY IS… ALTERNATE RECORD KEY IS.

  • Using alternate indexes in CICS programs:

FCT entries must be created for both base cluster & the path. To read using the alternate index, use the dd-name of the path in CICS file control commands.

 

Q68. What happens when you open an empty VSAM file in a COBOL program for input?

A68. VSAM file that has never contained a record is treated as unavailable. Attempting to open for input will fail. An empty file can be opened for output only. When you open for output, COBOL will write a dummy record to the file & then delete it out.

 

Q69. How do you initialize a VSAM file before any operation? a VSAM with alternate index?

A69. Can write a dummy program that just opens the file for output & then closes it.

 

Q70. What does a file status of 02 on a VSAM indicate?

  1. Duplicate alternate key . Happens on both input and output operation

 

Q71. How do you calculate record size of an alternate cluster? Give your values for both unique and non-unique?

A71. Unique Case: 5 + ( alt-key-length + primary-key ). Nonunique Case: 5 + ( alt-keylength + n * primary-key ). Where n = # of duplicate records for the alternate key

 

Q72. What is the difference between sequential files and ESDS files?

A72. Sequential (QSAM) files can be created on tape while ESDS files cannot. Also, you can have ALTINDEX for an ESDS while no such facility exists for QSAM files.

 

Q73. How do you load a VSAM data set with records?

A73. Using the REPRO command.

 

Q74. How do you define a GDG?

A74. Use the DEFINE GENERATIONDATAGROUP command. In the same IDCAMS step, another dataset must be defined whose DCB parameters are used when new generations of the GDG are created. This dataset is known as the model dataset. The ds-name of this model dataset must be the same as that of the GDG, so use a DISP of KEEP rather than CATLG and also specify SPACE=(trk,0)

 

Q75. Do all versions of the GDG have to be of the same record length?

A75. No, the DCB of the model dataset can be overridden when you allocate new versions.

 

Q76. How are different versions of GDG named?

A76. Base-file-name.GnnnnnV00 where nnnn= generation number (upto 255). Nnnn will be 0000 for the 1st generation. This format is also called as Absolute GDG naming format.

 

Q77. Suppose 3 generations of a GDG exist. How would you reference the 1st generation in the JCL?

A77. Use GDG name(-2). It is relative naming format.

 

Q78. Suppose a generation of GDG gets created in a particular step of a PROC. How would you refer the current generation in a subsequent step? What would be the disposition of this generation now?

A78. Relative generation numbers are updated only at the end of the job, not at the end of a step. To allocate a new generation, we would be using (+1) with a DISP of (NEW,CATLG,DELETE). To refer to this in a subsequent step in the same job, we would again use (+1) but with a DISP of SHR or OLD.

 

Q79. What more info you should give in the DD statement while defining the next generation of a GDG?

A79. Give (+1) as the generation number, give (new,catlg) for DISP, give space parameter, can give the Dataset Control Block parameter if you want to override the DCB of the model dataset.

 

Q80. Assuming that the DEFINE JCL is not available, how do you get info about a VSAM file’s organization?

A80, Use the LISTCAT command.

 

Q81. During processing of a VSAM file, some system error occurs and it’s subsequently unusable. What do you do?

A81. Run VERIFY.

 

Q82. How do you fix the problem associated with VSAM out of space condition?

A82. 1. Define new VSAM dataset allocated with more space.

  1. Use IDCAMS to REPRO the old VSAM file to new VSAM dataset.
  2. Use IDCAMS to ALTER / rename the old VSAM dataset or se IDCAMS to DELETE the old VSAM dataset.
  3. Use IDCAMS to ALTER / rename the new VSAM dataset to the name of the original VSAM dataset.

 

Q83. What is the meaning of VSAM RETURN-CODE 28?

A83. Out of space condition is raised.

 

Q84. How many Alternate Indexes you can have on a dataset? – Remember ALT

INDEX is possible only on KSDS and RRDS.

A84. 255 – but you must be a nut to have so many ALT Indexes on a dataset!

 

Q85. Is it slower if you access a record through ALT INDEX as compared to Primary

INDEX? Why?

A85. Yes. Because the alternate key would first locate the primary key, which in turn

locates the actual record. Needs twice the number of I/Os.

 

Q86. What is RECOVERY and SPEED parameters in DEFINE CLUSTER command?

A86. RECOVERY (default) and SPEED are mutually exclusive. Recovery pre-formats the control areas during the initial dataset load, if the job fails, you can restart but you must have a recovery routine already written to restart the job. SPEED does not pre-format the CAs. It is recommended that you specify SPEED to speed up your initial data load.

 

Q87. What is a Base Cluser?

A87. The Index and data components of a KSDS

 

Q88. Describe SHAREOPTIONS parameter (SHR) in Define Cluster command.

A88. It defines the cross-region and cross-system sharing capabilities of the dataset. Syntax is SHR(CRvalue CSvalue) value 1 means multiple read OR single write (read integrity) 2 means multiple read AND single write (Write integrity) 3 means Multiple read AND multiple write 4 is same as 3, which refreshes the buffer with every random access. default is SHR(1 3).

 

Q89. What does the KEYRANGES parameter in Define Cluster commend do?

A89. It divides a large dataset into several volumes according to the Key-ranges specified. e.g., KEYRANGES ((0000001 2999999) (3000000 5999999)). if the activity on the key ranges are evenly distributed, concurrent access is possible, which is a performance improvement.

 

Q90. What are the optional parameters to the input dataset While loading the empty

cluster with the data records?

A90. 1)FROMADDRESS(address) 2)TOADDRESS(address) where ‘address’ specifies the RBA value of the key of the input record. 3)FROMNUMBER(rrn) 4)TONUMBER(rrn) where ‘rrn’ specifies the relative record number of the RRDS record 5)FROMKEY(key) 6)TOKEY(key) where ‘key’ specifies the key of the input record 7)SKIP(number) 8)COUNT(number) where ‘number’ specifies the number of records to skip or copy Ex: REPRO INFILE(DD1) OUTFILE(DD2) SKIP(9000) COUNT(700) – Skips the first 9000 records and begins copying at 9001 and copies 700 records from DD1 to DD2.

 

Q91. What is IDCAMS? What is the purpose of it?.

A91. IDCAMS is an access method services utility used for creating, deleting, altering VSAM files and copying sequential file to a VSAM file, etc.

 

Q92. How to delete a member using JCL.

A92. Using IDCAMS a member can be deleted. DELETE ‘XXX.YYY(member)

 

Q93. What is the Difference between LDS & ESDS?

A93. These two datasets are VSAM datasets. ESDS maintains control information. But LDS does not maintains the control information.

Q94. Is a delete operation possible in an ESDS? B) Is rewrite operation possible in

ESDS?

A94. A. No delete operation is not possible in VSAM ESDS. B. Yes rewrite operation is possible in an ESDS.

 

A95. What is an alternate index and path?

A95. An alternate index is an another way of accessing key sequenced data record stored in a base cluster and path is the linkage which connect alternate index to its base cluster.

 

Q96. How many buffers are allocated to VSAM KSDS and ESDS?

A96. 2 data buffers by default for ESDS. For KSDS it allots 2 data buffers and 1 index

buffers. each buffer is about 4k.

 

Q97. What’s the biggest disadvantage of using a VSAM dataset?

A97. FREE SPACE(FPSC)

 

Q98. What’s the device independent method to indicate where a Record is Stored?

A98. By USING RBA(Relative Byte Address).

 

Q99. How many times Secondary Space Allocated?

A99. 122 TIMES

 

Q100. What is the RRN for the first record in RRDS?

A100. 1

 

Q101. If FSPC(100 100) is specified does it mean that both the control interval and control area will be left empty because 100 % of both CI and CA are specified to be empty?

A101. No, they would not be left empty. One record will be written in each CI and 1 CI will be written for each CA.

Leave a Reply

Your email address will not be published. Required fields are marked *