SlideShare a Scribd company logo
2
Most read
3
Most read
List of Mainframe VSAM Interview Questions and Answers.
CICS Interview Questions JCL Interview Questions
DB2 Interview Questions COBOL Interview Questions
VSAM Interview Questions IDMS Interview Questions
IMS Interview Questions MVS Interview Questions
1. What are the different types of VSAM files available?
ESDS: Entry Sequence Data Set
KSDS: Key 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
????Any one who knows - 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.

More Related Content

What's hot (20)

PPTX
Job Control Language
kapa rohit
 
PPT
Db2
yboren
 
PDF
Mvs commands
Maintec Technologies Inc.
 
PDF
z/OS Communications Server Technical Update
zOSCommserver
 
PDF
MVS ABEND CODES
Nirmal Pati
 
PPT
Parallel Sysplex Implement2
ggddggddggdd
 
PPTX
Z OS IBM Utilities
kapa rohit
 
PPTX
Vsam
kapa rohit
 
PPTX
Mainframe JCL Part - 1
janaki ram
 
PPT
DB2 Interview Questions - Part 1
ReKruiTIn.com
 
DOC
COBOL FOR FRESHER
Nirmal Pati
 
PPT
PLI Presentation for Mainframe Programmers
Srinimf-Slides
 
PPT
JCL MAINFRAMES
kamaljune
 
PPTX
Skillwise JCL
Skillwise Group
 
PDF
z/OS Communications Server: z/OS Resolver
zOSCommserver
 
PPTX
JCL UTILITIES IEBCOPY
janaki ram
 
PDF
Ibm db2 interview questions and answers
Sweta Singh
 
PPT
CICS basics overview session-1
Srinimf-Slides
 
PPT
Introduction of ISPF
Anil Bharti
 
Job Control Language
kapa rohit
 
Db2
yboren
 
z/OS Communications Server Technical Update
zOSCommserver
 
MVS ABEND CODES
Nirmal Pati
 
Parallel Sysplex Implement2
ggddggddggdd
 
Z OS IBM Utilities
kapa rohit
 
Mainframe JCL Part - 1
janaki ram
 
DB2 Interview Questions - Part 1
ReKruiTIn.com
 
COBOL FOR FRESHER
Nirmal Pati
 
PLI Presentation for Mainframe Programmers
Srinimf-Slides
 
JCL MAINFRAMES
kamaljune
 
Skillwise JCL
Skillwise Group
 
z/OS Communications Server: z/OS Resolver
zOSCommserver
 
JCL UTILITIES IEBCOPY
janaki ram
 
Ibm db2 interview questions and answers
Sweta Singh
 
CICS basics overview session-1
Srinimf-Slides
 
Introduction of ISPF
Anil Bharti
 

Viewers also liked (20)

PPTX
Vsam presentation PPT
Anil Polsani
 
PPTX
DB2 on Mainframe
Skillwise Group
 
PPTX
Top 14 product interview tips
ProductManager88
 
PPTX
Top 12 product resume tips
ProductManager88
 
PPTX
Top 10 product cover letter tips
ProductManager88
 
PDF
Interview Evaluation Sheet: All Other Question Types
Lewis Lin 🦊
 
PDF
Design it yourself_the_marketers_crash_course_in_visual_content_creation
Lewis Lin 🦊
 
PDF
Headline hacks 03-10-2012
Lewis Lin 🦊
 
PDF
Interview Evaluation Sheet: Operations Question
Lewis Lin 🦊
 
PDF
Best of email swipe file
Lewis Lin 🦊
 
DOC
Performance Based Interviewing (PBI) Questions
Lewis Lin 🦊
 
PDF
PM Interview Evaluation Sheet: Estimation Question
Lewis Lin 🦊
 
PDF
Qvartz Case Interview Handbook
Lewis Lin 🦊
 
DOCX
Google's Official Note to Product Management Candidates
Lewis Lin 🦊
 
PDF
PM interview questions book pdf
Lewis Lin 🦊
 
PDF
Big Data and the Future by Sherri Rose
Lewis Lin 🦊
 
DOCX
Sa pa tour
docco chemgio
 
PPTX
PROYECION DE IMAGENES EN LA HIGIENE PERSONAL
karolinacarni
 
PDF
Comte, a., curso de filosofia fositiva
Vito Fernandez
 
Vsam presentation PPT
Anil Polsani
 
DB2 on Mainframe
Skillwise Group
 
Top 14 product interview tips
ProductManager88
 
Top 12 product resume tips
ProductManager88
 
Top 10 product cover letter tips
ProductManager88
 
Interview Evaluation Sheet: All Other Question Types
Lewis Lin 🦊
 
Design it yourself_the_marketers_crash_course_in_visual_content_creation
Lewis Lin 🦊
 
Headline hacks 03-10-2012
Lewis Lin 🦊
 
Interview Evaluation Sheet: Operations Question
Lewis Lin 🦊
 
Best of email swipe file
Lewis Lin 🦊
 
Performance Based Interviewing (PBI) Questions
Lewis Lin 🦊
 
PM Interview Evaluation Sheet: Estimation Question
Lewis Lin 🦊
 
Qvartz Case Interview Handbook
Lewis Lin 🦊
 
Google's Official Note to Product Management Candidates
Lewis Lin 🦊
 
PM interview questions book pdf
Lewis Lin 🦊
 
Big Data and the Future by Sherri Rose
Lewis Lin 🦊
 
Sa pa tour
docco chemgio
 
PROYECION DE IMAGENES EN LA HIGIENE PERSONAL
karolinacarni
 
Comte, a., curso de filosofia fositiva
Vito Fernandez
 
Ad

Similar to Vsam interview questions and answers. (20)

DOC
Basic VSAM
Dan O'Dea
 
DOC
Jcl faqs
kapa rohit
 
PDF
16119 - Get to Know Your Data Sets (1).pdf
3operatordcslipiPeng
 
PPTX
Datasets and catalogs
Roma Vyas
 
PDF
Interview qa
greatjks
 
PDF
Ss83 g formation-z-os-vsam-et-access-method-services
CERTyou Formation
 
DOC
VSAM Tuning
Dan O'Dea
 
PDF
VSAM for ever, Alvaro Salla, CMG Brasil 2011
Joao Galdino Mello de Souza
 
PPT
Cics data access-session 4
Srinimf-Slides
 
PDF
Jcl
shivas
 
PPT
SAHBIASBASBASASDASDSADSADfdgfdfdgdfgfdgdfgdfgfgd
solomonrajuRD
 
PDF
Cics cheat sheet
Rafi Shaik
 
PDF
Samind brain power_v2a
Otto Kee LeakPeng
 
DOC
Reading the LISTCAT entries for VSAM
Dan O'Dea
 
PPT
WAVV 2009 - Migration to CICS TS for VSE/ESA
illustrosystems
 
DOC
White Paper, System Z Dataset Naming Standards
Dan O'Dea
 
PDF
File handling in qbasic
SmritiGurung4
 
DOC
Cics faqs
kapa rohit
 
DOC
Db2 faqs
kapa rohit
 
PDF
CICS-COBOL to J2EE Migration – White Paper
Kumaran Systems Inc
 
Basic VSAM
Dan O'Dea
 
Jcl faqs
kapa rohit
 
16119 - Get to Know Your Data Sets (1).pdf
3operatordcslipiPeng
 
Datasets and catalogs
Roma Vyas
 
Interview qa
greatjks
 
Ss83 g formation-z-os-vsam-et-access-method-services
CERTyou Formation
 
VSAM Tuning
Dan O'Dea
 
VSAM for ever, Alvaro Salla, CMG Brasil 2011
Joao Galdino Mello de Souza
 
Cics data access-session 4
Srinimf-Slides
 
Jcl
shivas
 
SAHBIASBASBASASDASDSADSADfdgfdfdgdfgfdgdfgdfgfgd
solomonrajuRD
 
Cics cheat sheet
Rafi Shaik
 
Samind brain power_v2a
Otto Kee LeakPeng
 
Reading the LISTCAT entries for VSAM
Dan O'Dea
 
WAVV 2009 - Migration to CICS TS for VSE/ESA
illustrosystems
 
White Paper, System Z Dataset Naming Standards
Dan O'Dea
 
File handling in qbasic
SmritiGurung4
 
Cics faqs
kapa rohit
 
Db2 faqs
kapa rohit
 
CICS-COBOL to J2EE Migration – White Paper
Kumaran Systems Inc
 
Ad

More from Sweta Singh (7)

PDF
Ibm informatica interview question answers
Sweta Singh
 
PDF
Cts informatica interview question answers
Sweta Singh
 
PDF
Accenture informatica interview question answers
Sweta Singh
 
PDF
Cobol questions and answers
Sweta Singh
 
PDF
Project manager interview questions and answers
Sweta Singh
 
PDF
Google product manager interview questions answers
Sweta Singh
 
PDF
Siebel 8.1 Certifications Question Answers
Sweta Singh
 
Ibm informatica interview question answers
Sweta Singh
 
Cts informatica interview question answers
Sweta Singh
 
Accenture informatica interview question answers
Sweta Singh
 
Cobol questions and answers
Sweta Singh
 
Project manager interview questions and answers
Sweta Singh
 
Google product manager interview questions answers
Sweta Singh
 
Siebel 8.1 Certifications Question Answers
Sweta Singh
 

Recently uploaded (20)

PPTX
CLASSROOM OFFICERS COMPOSITION FOR THE S.Y. 2025-2026
JuffyMastelero
 
PPTX
Larynx_Cancer_Presenvdhhdhhdtaon (1).pptx
esterritesh
 
PPTX
A Guide for a Winning Interview July 2025
Bruce Bennett
 
PDF
Mastercard Foundation post.pdf documentation
odameamesika
 
PDF
Web Developer Jobs in Jaipur Your Gateway to a Thriving Tech Career in Rajast...
vinay salarite
 
PPTX
21st-Literature.pptxjsududhshsusushshsusuhsgsysh
JohnVJLBellen
 
PPTX
Leadership Principles Presentations.pptx
ChrisBus1
 
PDF
Rediscovering Classic Illustration Techniques.pdf
Bruno Amezcua
 
PPTX
Wow a powerpoint I'm really helping humanity
yangjessica629
 
PPTX
Adaptive Leadership Model 2025 – AI-Generated PowerPoint by Presentify.ai
presentifyai
 
PDF
Sarkari Job Alerts in Marathi & English – Majhi Naukri
Reeshna Prajeesh
 
PPTX
Data Analyst Jobs in Jaipur Top Hiring Trends in 2025.pptx
vinay salarite
 
PPT
SQL.pptkarim pfe rabatkarim pfe rabatkarim pfe rabat
Keeyvikyv
 
PDF
Crafting Winning CVs Cover Letters and Mastering Job Interviews with Roman Vi...
Excellence Foundation for South Sudan
 
PPTX
GSM GPRS & CDMA.pptxbhhhhhhhhjhhhjjjjjjjj
saianuragk33
 
PDF
Formwalaa: Your One-Stop Hub for Exam & Job Application Forms
Reeshna Prajeesh
 
PDF
hr generalist training.pdf..............
a25075044
 
PPTX
Web Developer Jobs in Jaipur Your Gateway to a Thriving Tech Career in Rajast...
vinay salarite
 
PDF
ILLUMINATI CALL KAMPALA IN UGANDA+256776963507/0741506136
Illuminati Agent in Kampala Uganda+256776963507/0741506136
 
PDF
hr generalist certification.pdf.........
a25075044
 
CLASSROOM OFFICERS COMPOSITION FOR THE S.Y. 2025-2026
JuffyMastelero
 
Larynx_Cancer_Presenvdhhdhhdtaon (1).pptx
esterritesh
 
A Guide for a Winning Interview July 2025
Bruce Bennett
 
Mastercard Foundation post.pdf documentation
odameamesika
 
Web Developer Jobs in Jaipur Your Gateway to a Thriving Tech Career in Rajast...
vinay salarite
 
21st-Literature.pptxjsududhshsusushshsusuhsgsysh
JohnVJLBellen
 
Leadership Principles Presentations.pptx
ChrisBus1
 
Rediscovering Classic Illustration Techniques.pdf
Bruno Amezcua
 
Wow a powerpoint I'm really helping humanity
yangjessica629
 
Adaptive Leadership Model 2025 – AI-Generated PowerPoint by Presentify.ai
presentifyai
 
Sarkari Job Alerts in Marathi & English – Majhi Naukri
Reeshna Prajeesh
 
Data Analyst Jobs in Jaipur Top Hiring Trends in 2025.pptx
vinay salarite
 
SQL.pptkarim pfe rabatkarim pfe rabatkarim pfe rabat
Keeyvikyv
 
Crafting Winning CVs Cover Letters and Mastering Job Interviews with Roman Vi...
Excellence Foundation for South Sudan
 
GSM GPRS & CDMA.pptxbhhhhhhhhjhhhjjjjjjjj
saianuragk33
 
Formwalaa: Your One-Stop Hub for Exam & Job Application Forms
Reeshna Prajeesh
 
hr generalist training.pdf..............
a25075044
 
Web Developer Jobs in Jaipur Your Gateway to a Thriving Tech Career in Rajast...
vinay salarite
 
ILLUMINATI CALL KAMPALA IN UGANDA+256776963507/0741506136
Illuminati Agent in Kampala Uganda+256776963507/0741506136
 
hr generalist certification.pdf.........
a25075044
 

Vsam interview questions and answers.

  • 1. List of Mainframe VSAM Interview Questions and Answers. CICS Interview Questions JCL Interview Questions DB2 Interview Questions COBOL Interview Questions VSAM Interview Questions IDMS Interview Questions IMS Interview Questions MVS Interview Questions 1. What are the different types of VSAM files available? ESDS: Entry Sequence Data Set KSDS: Key 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
  • 2. 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.
  • 3. 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.
  • 4. 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 ????Any one who knows - 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)
  • 5. 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.