VSAM SECTION4

SECTION 4

Answer the following briefly:

1. Differentiate between Control Interval and Control Area.

2. How many bytes of control information are there if all records are of the same length?Specify the number of bytes used by RDFs and CIDFs.

3. Differentiate between Direct and Sequential processing.

4. What types of data sets are supported by VSAM?

5. What is a cluster?

6. Specify the default action of VSAM if the specified CISZ is not valid in defining the cluster.

7. How are records stored in each type of VSAM data set?

8. What is the function performed by VSAM ALTER?

9. What is the difference between a user catalog and a master catalog?

10. How do you specify the amount of CI to be used?

11. How do you specify the amount of CA available to a file?

12. Explain the need for free space.

13. What does it imply, if FSPC(100 100) is specified in DEFINE CLUSTER command?

14. What is AMS? How are its services invoked?

15. Describe the various levels of password protection.

16. What is the format of SHAREOPTIONS and why is it used?

17. In what manner the VSAM data sets can be shared with SHAREOPTION(2 3)?

18. Mention some of the important types of information that can be obtained from LISTCAT.

19. How can you check the amount of free space available for a data set?

20. How can we obtain the status of a master catalog or a user catalog?

21. What is a VSAM model?

22. What is a reusable data set?

23. What is the function performed by VSAM REPRO?

24. What is the effect of REUSE with REPRO?

25. What is the effect of REPLACE with REPRO?

26. What is the function performed by PRINT?

27. What is a data class?

28. Mention some of the JCL parameters used for VSAM.

29. How can you view the contents of a Data Class?

30. Differentiate between logical record access and control interval access.

31. Differentiate between MOVE mode and LOCATE mode.

32. What happens when a VSAM data set is requested for OPEN?

33. What is AMP and when would you use it?

34. What is IIP and when is it used?

35. Mention some of the COBOL procedure division verbs used for processing a VSAM data set.

36. What are the limitations of COBOL in processing a VSAM data set?

37. How can a VSAM data set be shared within a region?

38. What is the effect of SPEED/RECOVERY with DEFINE CLUSTER?

39. What is the purpose of VERIFY command?

40. What is the effect of ERASE/NOERASE with DELETE CLUSTER?

41. What is an USVR? What are its functions?

42. What is the purpose of free space?

43. What function is performed by IMBED parameter?

44. What function is performed by REPLICATE parameter?

45. What is the purpose of buffer space?

46. Explain the terms front and rear key compressions.

47. Explain the need for an alternate index.

48. What is a PATH?

49. What functions does the UPGRADE option do?

50. What is the function of BLDINDEX?

51. What are the various utilities available for backing up of data and restoring it?

52. Why do we go for reorganizing a KSDS?

53. What are the effects of reorganization of a KSDS?

54. What is control interval ?

55. What is KSDS, ESDS,RRDS ?

56. What is VERIFY on VSAM file ?

VSAM

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

KSDS: Key Sequence Data Set

ESDS: Entry Sequence Data Set

RRDS: Relative Data Set

2.What is IDCAMS ?

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

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

Yes

4.Syntax of AMS modal commands ?

Note: these can be used only under IDCAMS and not from the TSO prompt.

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 prev functions

SET is also a valid AMS command. SET LASTCC (or MAXCC) = value

The maximum condition code is 16. A cond code of 4 indicates a warning. A cond code of 8 is usually encountered on a DELETE of a dataset that is not present.

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

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

6.What is Control Interval, Control Area

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

7.What is FREESPACE ?

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.

8.How do you decide on optimum values for CI, FREESPACE etc…

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.

9.Would you specify FREESPACE for an ESDS?

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.

10.What is SHAREOPTS ?

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 MVSes can share the file. Usual value is (2 3).

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

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).

12.How do you define a KSDS ?

DEFINE CLUSTER(cluster name) with the INDEXED parameter. Also specify the ds name for the DATA component & the ds INDEX component. Other important parms are RECORDSIZE, KEYS, SHAREOPTIONS.

13.How do you define an ALTINDX ? How do you use ALTINDXs in batch, CICS pgms ?

DEFINE ALTERNATEINDEX. Important paramters 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 paramters 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).

Using alternate indexes in batch pgms:

In the JCL, you must have DD stmts for the cluster and for the path(s). In the cobol pgm, SELECT .. ASSIGN TO ddname for base cluster RECORD KEY IS… ALTERNATE RECORD KEY IS..

Using alternate indexes in CICS pgms:

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.

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

A 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.

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

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

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

Duplicate alternate key . Happens on both input and output operation

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

Unique Case: 5 + ( alt-key-length + primary-key )

Nonunique Case: 5 + ( alt-key-length + n * primary-key )

where n = # of duplicate records for the alternate key

???? Ramesh – can you explain ?

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

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.

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

Using the REPRO command.

20.How do you define a GDG ?

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)

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

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

22.How are different versions of GDG named ?

base-file-name.GnnnnnV00 where nnnn= generation number (upto 255).

nnnn will be 0000 for the 1st generation.

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

Use GDG name(-2).

24.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? -

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.

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

Give (+1) as the generation number, give (new,catlg) for disp, give space parameter, can give the dcb parameter if you want to override the dcb of the model dataset.

26.Assuming that the DEFINE jcl is not available, how do you get info about a VSAM file’s organisation ?

Use the LISTCAT command.

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

Run VERIFY.

VIRTUAL STORAGE ACCESS METHOD

DBT Adivosor to tune vsam definitions ci size and freespace requirements

DataPacker/VSAM —BMC DASD savings up to 80%

AMP PARM

AMP = (BUFNI (# I/O BUFFERS), bufnd # 1/0S TO BE PROCESSED)

DELETE

DEFINE CLUSTER

NAME

INDEXED

KEYS

FREESPACE FREE BYTES (X,Y) X = % OF fb IN ci/y= %ci/ca

RECORDSIZE

SHAREOPTIONS (3 3)

SPEED

NOIMBED

UNIQUE

NOERASE

NOWRITECHECK

NOREPLICATE

NONSPANNED

SHARE

DATA

NAME

CONTROLINTERVALSIZE(4096)

CYLINDERS

OWNER

VOLUMES(* * *)

21

INDEX

SAME AS DATA/NO OWNER

SET MAXCC = 0 AT LOAD,COND=(0,ne)

ALTERNATE INDEX

DEFINE AIX

NAME

FREESPACE

KEYS

OWNER

RECORDSIZE

RELATE

SHAREOPTIONS (2 3)

UNPGRADE

NUNQK

DATA

NAME

CISZ

VOLUMES

INDEX

NAME/CYL/VOLUMES

BLDINDEX INDATASET/OUTDATASET

DEFINE PATH NAME/PATHENTRY

DEFINE A RELATIONSHIP BETWEEN AN ALTERNATE INDEX AND ITS BASE CLUSTER

LISTCAT

AMS ACCESS METHOD SERVICES IDCAMS UTILITY

DEFINE/REPRO/PRINT/LISTCAT

VIRTUAL STORAGE ACCESS METHOD

ORGANIZATIONS:

ESDS ENTRY SEQUENCED DATA SET LOADED IN SEQ

LOGS/JOURNALS OR rba RELATIVE BLOCK ACCESS

KSDS KEY SEQUENCED DATA SET INDEXED

MOST

RRDS RELATIVE RECORD DATA SET RECORD LOACATION

RELATIVE TO

START OF DATASET

RRN RELATIVE RECORD NUMBER

FILE MAINTENANCE, DATA PORTABILITY, DATA SECURITY

ALTERNATE INDEX EXAMPLE

ACCOUNT/TELEPHONE

DELETE

DEFINE ALTERNATEINDEX

DEFINE PATH/PATHENTRY

BLDINDEX

IMPROVE KSDS/VSAM

PLACE INDEX AND DATA ON A SEPARATE PACK

USE IMBED OPTION TO STORE SEQUENCE SET RECORD FOR EACH CA

ASSIGNMENT OF FREE SPACE

STORAGE DATE COMPONENTS ON MULTIPLE VOLUMES

USE dbt ADVISOR TO TUNE vsam FILE DEFINTIONS, I.E. cisize AND freeSPACE

UsE STROBE TO ANALYZE CPU USAGE

22

Vsam ASSIST FOR REORGS

VERIFY IF A PROGRAM ABENDS IN MIDDLE OF PROCESSING FILE AY REMAIN OPEN

IDCAMS/CLUSTER

RECORDS/VOLUME/KEY

SHAREOPTION

CROSS SYSTEM/REGION SHARING

CI CONTROL INTERVAL CONTINUOUS AREAS OF AUXILIARY STORAGE

WHERE RECORDS RESIDE

CA CONTROL AREA

VSAM I/O PLUS VIOCTL DD CARD ADDED TO CALCULATE BUFFER AREAS AND

TRANSMITTING DATA AND INDEX CONTROL INTERVALS BETWEEN VRITUAL AND AUX

STORAGE

VSAM Section1

SECTION 1

Fill in the blanks:

1. A logical record is a unit of information used to store data in a VSAM data set.

2. A CI is a unit of information that VSAM transfers between virtual storage and disk storage.

3. The minimum size of a CI is 512 bytes.

4. 512 bytes is the minimum size of a CI.

5. The maximum size of a CI is 32K.

6. A CI consists of Logical Records, Free Space and Control Information.

7. A Control Interval Definition Field (CIDF) is of 4 Bytes long.

8. A Record Definition Field (RDF) is of 3 Bytes long.

9. In a CI if two or more adjacent records have the same length, only two RDf’s are used.

10. The minimum size of a CA is 1 track.

11. 1 track is the minimum size of a CA.

12. The maximum size of a CA is 1 cylinder.

13. 1 cylinder is the maximum size of a CA.

14. LDS is VSAM data set with a CI size of 4096Bytes.

15. LDS has no imbedded control information in its CI.

16. LDS has only a data component.

17. LDS cannot have an alternate index.

18. RRDS consists of a number of preformatted fixed-length slots.

19. RRDS has only a data component.

20. For an RRDS the relative record number is used as a search argument.

21. RRDS supports only fixed length records.

22. ESDS has only a data component.

23. Spanned records must be accessed in MOVE mode.

24. Alternate Index is a special type of KSDS.

25. The Master Catalog (MCAT) is identified at IPL.

26. The Master Catalog (MCAT) contains pointers to system data sets and user catalogs.

27. VTOC (Volume Table Of Contents) describes the type and location of data sets on the volume.

28. VTOC (Volume Table Of Contents) is a data set created at volume initialization.

29. JOBCAT identifies a default catalog for an entire job.

30. STEPCAT identifies a default catalog for a single job step.

31. The two types of AMS commands are functional commands and modal commands.

32. INDEXED is the default cluster type.

33. 4089 is the default maximum record length.

34. One cluster can have a maximum of 123 extents for all volumes together.

35. Record Size cannot be coded for LDS.

36. INDEX information appears on a LISTCAT listing for KSDS.

37. A Data Class is a description of data set characteristics under control of SMS.

38. JCL parameters override the specifications from a Data Class.

39. The names and contents of the Data Classes can be displayed through ISMF.

40. REPRO provides an easy to use copy utility.

41. REPRO copies or merges an alternate index as a KSDS.

42. REPRO converts a sequential or indexed-sequential data set into a VSAM data set.

43. The PRINT command prints VSAM data sets, non-VSAM data sets and catalogs.

44. The default print format for output is DUMP.

45. If a KSDS cluster with name BMDUSER.KSDS1 is created, the default data component name would be BMDUSER.KSDS1.DATA .

46. ALTER modifies the cataloged attributes of a VSAM data set.

47. ALTER can be used to change an ESDS into an LDS.

48. An LDS cannot be changed to any other VSAM data set format.

49. IMBED and REPLICATE options are applicable to KSDS cluster.

50. Parameters specified in the JCL override the appropriate parameters specified in the Data Class.

51. VSAM clusters can be accessed in Sequential, Direct and Skip sequential .

52. VSAM data can be processed by Logical Record or by Control Interval access.

53. After software-end-of-file is written, the file is in Recovery mode.

54. VERIFY cannot be used for an Empty Dataset or an LDS .

55. Password verification is done during OPEN processing.

56. Strings allow concurrent positioning within a data set. ()

57. The minimum buffer space for a cluster is STRNO index buffers and STRNO+1 data buffers.

58. The default buffer space for a cluster is STRNO index buffers and STRNO+1 data buffers.

59. Sequential processing is overlapped when at least STRNO+3 data buffers are allocated.

60. For Sequential processing, larger data CI sizes are desirable.

61. For Random or Direct processing, smaller data CIs are desirable.

62. Free Space is used to reduce the number of CI and CA splits.

63. ICI access cannot be used to Load or Extend a data set.

64. Space allocations made in RECORDs are converted to TRKS by VSAM. ()

65. Key compression applies to the Index component.

66. An alternate index cannot be defined for an RRDS or LDS .

67. Each AIX data record contains System Header Information, the Alternate Key, and Pointer to the data set.

68. A Path Path provides a way to gain access to the base data through its AIX.

69. Base Cluster must not be empty for BLDINDEX.

70. Length of the alternate keys must not exceed 255 .

71. Records larger than 32760 cause REPRO to terminate.

72. When exporting a data set, we specify TEMPORARY to preserve the original data set.

Virtual Storage Access Method (VSAM)

Virtual Storage Access Method (VSAM)

1) What are the types of VSAM datasets?

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

2) How are records stored in an ESDS, entry sequenced dataset?

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

3) What is a CI, control interval?

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

4) What are the distinctive features of a ksds, key sequenced dataset?

A4) The index and the distributed free space.

5) What is a CA, control area?

A6) A group of control intervals makes up a control area.

6) 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.

7) 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.

8) 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.

9) What is the catalog?

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

10) What is an alternate index?

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

11) What is a path?

12) 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.

12) What is the upgrade set?

13) 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.

13) What is free space?

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

14) What is a VSAM split?

15) 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.

15) What is the base cluster?

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

16) Do primary key values have to be unique? Do alternate key values have to be unique?

17) Primary key values must be unique; alternate key values need not be.

17) In the COBOL SELECT statement what is the ORGANIZATION for a KSDS?

18) The ORGANIZATION is INDEXED.

18) In the COBOL SELECT statement for a KSDS what are the three possibilities for ACCESS?

19) ACCESS can be SEQUENTIAL, RANDOM or DYNAMIC.

19) What is the COBOL RECORD KEY clause?

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

20) What is the purpose of the FILE STATUS clause in the SELECT statement?

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

21) If you wish to use the REWRITE command haw must the VSAM file be opened?

22) It must be opened as I/O.

22) Explain the meaning and syntax for the START command.

23) 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.

23) What is the meaning of dynamic processing?

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

24) Name some common VSAM error conditions and codes.

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

25) What is the VSAM-code field?

26) 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.

26) What is a VSAM slot?

27) 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.

27) What is the utility program closely associated with VSAM?

28) IDCAMS, the access method services utility.

28) There are at least seven IDCAMS commands; name and explain each of them ?.

29) ALTER modifies information for a catalog, alternate index, cluster or path. BLDINDEX builds the alternate index, of course. 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.

29) What are the three levels of definition for the VSAM DEFINE?

30) They are DEFINE CLUSTER, DATA and INDEX.

30) What is the significance of the SHAREOPTIONS parameter?

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

31) What is the meaning of the DEFINE MODEL parameter?

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

32) What is File Status in VSAM?

33) The FILE STATUS clause of the FILE-CONTROL paragraph allows for each file to be associated with a file status key (i.e., the 2-character data item specified in the FILE STATUS clause). If the FILE STATUS clause is specified for a given file, a value indicating the status of each I/O operation against that file is placed in the associated file status key. This value is stored in the file status key as soon as the I/O operation is completed (and before execution of any EXCEPTION/ERROR declarative or INVALIDKEY/AT END phrase associated with the I/O request).

Note: This element may behave differently when the CMPR2 compiler option is used. The file status key is divided

into two status keys: the first character is known as file status key 1; the second character is file status key 2.

33) What’s a LDS (Linear Data Set) and what’s it used for?

34) LDS is a VSAM dataset in name only. It has unstructured 4k (4096 bytes) fixed size CI’s which do not contain control fields and therefore from VSAM’s standpoint they do not contain any logical records. There is no free space, and no access from Cobol. Can be accessed by DB2 and IMS fast path datasets. LDS is essentially a table of data maintained on disk. The ‘table entries’ must be created via a user program and can only be logically accessed via a user program. When passed, the entire LDS must be mapped into storage, and then data is accessed via base and displacement type processing.

34) What is IDCAMS ?

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

35) Can AMS commands be run from the TSO prompt ?

36) Yes

36) Syntax of AMS modal commands ?

37) Note: these can be used only under IDCAMS and not from the TSO prompt.

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 prev functions

SET is also a valid AMS command. SET LASTCC (or MAXCC) = value

The maximum condition code is 16. A cond code of 4 indicates a warning. A cond code of 8 is usually encountered on a DELETE of a dataset that is not present.

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

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

38) What is Control Interval, Control Area?

39) 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

39) What is FREESPACE ?

40) 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.

40) How do you decide on optimum values for CI, FREESPACE etc…?

41) 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.

41) Would you specify FREESPACE for an ESDS?

42) 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.

42) What is SHAREOPTS ?

43) 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).

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

44) 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).

44) How do you define a KSDS ?

45) DEFINE CLUSTER(cluster name) with the INDEXED parameter. Also specify the ds name for the DATA component & the ds INDEX component. Other important parms are RECORDSIZE, KEYS, SHAREOPTIONS.

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

46) DEFINE ALTERNATEINDEX. Important paramters 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 paramters 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).

46) Using Alternate Indexes in Batch pgms:

47) In the JCL, you must have DD stmts for the cluster and for the path(s). In the COBOL Program, SELECT .. ASSIGN TO ddname for base cluster RECORD KEY IS… ALTERNATE RECORD KEY IS..

47) Using Alternate Indexes in CICS pgms:

48) 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.

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

49) A 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.

49) How do you initialize a VSAM file before any operation? a VSAM with alternate index?

50) Can write a dummy program that just opens the file for output and then closes it.

50) What does a file status of 02 on a VSAM indicate?

51) Duplicate alternate key . Happens on both input and output operation

51) How do you calculate record size of an alternate cluster? Give your values for both unique and nonunique.

52) Unique Case: 5 + ( alt-key-length + primary-key )

Non unique Case: 5 + ( alt-key-length + n * primary-key ) where n = number of duplicate records for the alternate key

52) What is the difference between sequential files and ESDS files?

53) 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.

53) How do you load a VSAM data set with records ?

54) Using the REPRO command.

54) How do you define a GDG ?

55) 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)

55) Do all versions of the GDG have to be of the same record length ?

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

56) How are different versions of GDG named ?

57) base-file-name.GnnnnnV00 where nnnn= generation number (upto 255). nnnn will be 0000 for the 1st generation.

57) Suppose 3 generations of a GDG exist. How would you reference the 1st generation in the JCL? – GS

58) Use GDG name(-2).

58) 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? – GS

59) 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.

59) What more info you should give in the DD statement while defining the next generation of a GDG? – GS

60) Give (+1) as the generation number, give (new,catlg) for disp, give space parameter, can give the DCB parameter if you want to override the dcb of the model dataset.

60) Assuming that the DEFINE JCL is not available, how do you get info about a VSAM file’s organisation?

61) Use the LISTCAT command.

61) During processing of a VSAM file, some system error occurs and it is subsequently unusable . What do you do ?

62) Run VERIFY.

62) How do you fix the problem associated with VSAM out of space condition?

63) Define new VSAM dataset allocated with more space.

Use IDCAMS to REPRO the old VSAM file to new VSAM dataset.

Use IDCAMS to ALTER / rename the old VSAM dataset or se IDCAMS to DELETE the old VSAM dataset.

Use IDCAMS to ALTER / rename the new VSAM dataset to the name of the original VSAM dataset.

63) What is the meaning of VSAM RETURN-CODE 28?

64) Out of space condition is raised.

64) On which datasets You can have ALT INDEX?.

65) only on KSDS and ESDS – not RRDS

65) How many Alternate Indexes you can have on a dataset?

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

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

67) 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.

67) What is RECOVERY and SPEED parameters in DEFINE CLUSTER command?

68) RECOVERY (default) and SPEED are mutually exclusive. Recovery preformats 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 preformat the CAs. It is recommended that you specify SPEED to speed up your initial data load.

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

69) 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).

69) What does the KEYRANGES parameter in Define Cluster commend do?

70) 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.

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

A70) 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.

71) What is IDCAMS? and what is the purpose of it?.

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

72) How to delete a member using JCL.

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

73) What is the Difference between LDS & ESDS ?

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

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

75) No delete operation is not possible in VSAM ESDS.B. Yes rewrite operation is possible in an ESDS.

75) What is an alternate index and path ?

76) 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.

76) How many buffers are allotted to VSAM KSDS and ESDS?

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

77) what’s the biggest disadvantage of using a VSAM dataset?

78) FREE SPACE(FPSC)

78) what’s the device independent method to indicate where a Record is Stored?

79) By USING RBA(Relative Byte Address).

79) How many times secondary space allocated?

80) 122 TIMES

80) what is the RRN for the first record in RRDS?

81) The answer is : 1

81) what is a Base Cluster?

82) The Index and data components of a KSDS

82) 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?

83) No, they would not be left empty. one record will be written in each CI and 1 CI will be written for each ca.