SlideShare a Scribd company logo
1 of 5
Download to read offline
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

Job Control Language
Job Control LanguageJob Control Language
Job Control Languagekapa rohit
 
DB2 Interview Questions - Part 1
DB2 Interview Questions - Part 1DB2 Interview Questions - Part 1
DB2 Interview Questions - Part 1ReKruiTIn.com
 
Mainframe JCL Part - 1
Mainframe JCL Part - 1Mainframe JCL Part - 1
Mainframe JCL Part - 1janaki ram
 
DB2 Systems Programming Tools of the Trade NA07B03
DB2 Systems Programming Tools of the Trade NA07B03DB2 Systems Programming Tools of the Trade NA07B03
DB2 Systems Programming Tools of the Trade NA07B03Linda Hagedorn
 
IBM DB2 for z/OS Administration Basics
IBM DB2 for z/OS Administration BasicsIBM DB2 for z/OS Administration Basics
IBM DB2 for z/OS Administration BasicsIBM
 
JCL UTILITIES IEBCOPY
JCL UTILITIES IEBCOPYJCL UTILITIES IEBCOPY
JCL UTILITIES IEBCOPYjanaki ram
 
Vsam presentation PPT
Vsam presentation PPTVsam presentation PPT
Vsam presentation PPTAnil Polsani
 
Solving the DB2 LUW Administration Dilemma
Solving the DB2 LUW Administration DilemmaSolving the DB2 LUW Administration Dilemma
Solving the DB2 LUW Administration DilemmaRandy Goering
 
DB2 for z/OS Architecture in Nutshell
DB2 for z/OS Architecture in NutshellDB2 for z/OS Architecture in Nutshell
DB2 for z/OS Architecture in NutshellCuneyt Goksu
 
CICS basics overview session-1
CICS basics overview session-1CICS basics overview session-1
CICS basics overview session-1Srinimf-Slides
 

What's hot (20)

Job Control Language
Job Control LanguageJob Control Language
Job Control Language
 
DB2 Interview Questions - Part 1
DB2 Interview Questions - Part 1DB2 Interview Questions - Part 1
DB2 Interview Questions - Part 1
 
Mainframe JCL Part - 1
Mainframe JCL Part - 1Mainframe JCL Part - 1
Mainframe JCL Part - 1
 
MVS ABEND CODES
MVS ABEND CODESMVS ABEND CODES
MVS ABEND CODES
 
Skillwise JCL
Skillwise JCLSkillwise JCL
Skillwise JCL
 
Cobol interview-questions
Cobol interview-questionsCobol interview-questions
Cobol interview-questions
 
DB2 Systems Programming Tools of the Trade NA07B03
DB2 Systems Programming Tools of the Trade NA07B03DB2 Systems Programming Tools of the Trade NA07B03
DB2 Systems Programming Tools of the Trade NA07B03
 
JCL SORT TOOL
JCL SORT TOOLJCL SORT TOOL
JCL SORT TOOL
 
IBM Utilities
IBM UtilitiesIBM Utilities
IBM Utilities
 
Jcl
JclJcl
Jcl
 
IBM DB2 for z/OS Administration Basics
IBM DB2 for z/OS Administration BasicsIBM DB2 for z/OS Administration Basics
IBM DB2 for z/OS Administration Basics
 
JCL UTILITIES IEBCOPY
JCL UTILITIES IEBCOPYJCL UTILITIES IEBCOPY
JCL UTILITIES IEBCOPY
 
Ipl process
Ipl processIpl process
Ipl process
 
Vsam presentation PPT
Vsam presentation PPTVsam presentation PPT
Vsam presentation PPT
 
Ibm db2
Ibm db2Ibm db2
Ibm db2
 
Solving the DB2 LUW Administration Dilemma
Solving the DB2 LUW Administration DilemmaSolving the DB2 LUW Administration Dilemma
Solving the DB2 LUW Administration Dilemma
 
DB2 for z/OS Architecture in Nutshell
DB2 for z/OS Architecture in NutshellDB2 for z/OS Architecture in Nutshell
DB2 for z/OS Architecture in Nutshell
 
DB2 utilities
DB2 utilitiesDB2 utilities
DB2 utilities
 
Cics tutorial
Cics tutorialCics tutorial
Cics tutorial
 
CICS basics overview session-1
CICS basics overview session-1CICS basics overview session-1
CICS basics overview session-1
 

Viewers also liked

Top 14 product interview tips
Top 14 product interview tipsTop 14 product interview tips
Top 14 product interview tipsProductManager88
 
Top 10 product cover letter tips
Top 10 product cover letter tipsTop 10 product cover letter tips
Top 10 product cover letter tipsProductManager88
 
Interview Evaluation Sheet: All Other Question Types
Interview Evaluation Sheet: All Other Question TypesInterview Evaluation Sheet: All Other Question Types
Interview Evaluation Sheet: All Other Question TypesLewis Lin 🦊
 
Design it yourself_the_marketers_crash_course_in_visual_content_creation
Design it yourself_the_marketers_crash_course_in_visual_content_creationDesign it yourself_the_marketers_crash_course_in_visual_content_creation
Design it yourself_the_marketers_crash_course_in_visual_content_creationLewis Lin 🦊
 
Headline hacks 03-10-2012
Headline hacks 03-10-2012Headline hacks 03-10-2012
Headline hacks 03-10-2012Lewis Lin 🦊
 
Interview Evaluation Sheet: Operations Question
Interview Evaluation Sheet: Operations QuestionInterview Evaluation Sheet: Operations Question
Interview Evaluation Sheet: Operations QuestionLewis Lin 🦊
 
Best of email swipe file
Best of email swipe fileBest of email swipe file
Best of email swipe fileLewis Lin 🦊
 
Performance Based Interviewing (PBI) Questions
Performance Based Interviewing (PBI) QuestionsPerformance Based Interviewing (PBI) Questions
Performance Based Interviewing (PBI) QuestionsLewis Lin 🦊
 
PM Interview Evaluation Sheet: Estimation Question
PM Interview Evaluation Sheet: Estimation QuestionPM Interview Evaluation Sheet: Estimation Question
PM Interview Evaluation Sheet: Estimation QuestionLewis Lin 🦊
 
Qvartz Case Interview Handbook
Qvartz Case Interview HandbookQvartz Case Interview Handbook
Qvartz Case Interview HandbookLewis Lin 🦊
 
Google's Official Note to Product Management Candidates
Google's Official Note to Product Management CandidatesGoogle's Official Note to Product Management Candidates
Google's Official Note to Product Management CandidatesLewis Lin 🦊
 
PM interview questions book pdf
PM interview questions book pdfPM interview questions book pdf
PM interview questions book pdfLewis Lin 🦊
 
Big Data and the Future by Sherri Rose
Big Data and the Future by Sherri RoseBig Data and the Future by Sherri Rose
Big Data and the Future by Sherri RoseLewis Lin 🦊
 
PROYECION DE IMAGENES EN LA HIGIENE PERSONAL
PROYECION DE IMAGENES  EN LA HIGIENE PERSONALPROYECION DE IMAGENES  EN LA HIGIENE PERSONAL
PROYECION DE IMAGENES EN LA HIGIENE PERSONALkarolinacarni
 
Comte, a., curso de filosofia fositiva
Comte, a., curso de filosofia fositivaComte, a., curso de filosofia fositiva
Comte, a., curso de filosofia fositivaVito Fernandez
 

Viewers also liked (20)

DB2 on Mainframe
DB2 on MainframeDB2 on Mainframe
DB2 on Mainframe
 
Top 14 product interview tips
Top 14 product interview tipsTop 14 product interview tips
Top 14 product interview tips
 
Top 12 product resume tips
Top 12 product resume tipsTop 12 product resume tips
Top 12 product resume tips
 
Top 10 product cover letter tips
Top 10 product cover letter tipsTop 10 product cover letter tips
Top 10 product cover letter tips
 
Interview Evaluation Sheet: All Other Question Types
Interview Evaluation Sheet: All Other Question TypesInterview Evaluation Sheet: All Other Question Types
Interview Evaluation Sheet: All Other Question Types
 
Vsam
VsamVsam
Vsam
 
Design it yourself_the_marketers_crash_course_in_visual_content_creation
Design it yourself_the_marketers_crash_course_in_visual_content_creationDesign it yourself_the_marketers_crash_course_in_visual_content_creation
Design it yourself_the_marketers_crash_course_in_visual_content_creation
 
Headline hacks 03-10-2012
Headline hacks 03-10-2012Headline hacks 03-10-2012
Headline hacks 03-10-2012
 
Interview Evaluation Sheet: Operations Question
Interview Evaluation Sheet: Operations QuestionInterview Evaluation Sheet: Operations Question
Interview Evaluation Sheet: Operations Question
 
Best of email swipe file
Best of email swipe fileBest of email swipe file
Best of email swipe file
 
Performance Based Interviewing (PBI) Questions
Performance Based Interviewing (PBI) QuestionsPerformance Based Interviewing (PBI) Questions
Performance Based Interviewing (PBI) Questions
 
PM Interview Evaluation Sheet: Estimation Question
PM Interview Evaluation Sheet: Estimation QuestionPM Interview Evaluation Sheet: Estimation Question
PM Interview Evaluation Sheet: Estimation Question
 
Qvartz Case Interview Handbook
Qvartz Case Interview HandbookQvartz Case Interview Handbook
Qvartz Case Interview Handbook
 
Google's Official Note to Product Management Candidates
Google's Official Note to Product Management CandidatesGoogle's Official Note to Product Management Candidates
Google's Official Note to Product Management Candidates
 
PM interview questions book pdf
PM interview questions book pdfPM interview questions book pdf
PM interview questions book pdf
 
Big Data and the Future by Sherri Rose
Big Data and the Future by Sherri RoseBig Data and the Future by Sherri Rose
Big Data and the Future by Sherri Rose
 
Artwork
ArtworkArtwork
Artwork
 
Sa pa tour
Sa pa tourSa pa tour
Sa pa tour
 
PROYECION DE IMAGENES EN LA HIGIENE PERSONAL
PROYECION DE IMAGENES  EN LA HIGIENE PERSONALPROYECION DE IMAGENES  EN LA HIGIENE PERSONAL
PROYECION DE IMAGENES EN LA HIGIENE PERSONAL
 
Comte, a., curso de filosofia fositiva
Comte, a., curso de filosofia fositivaComte, a., curso de filosofia fositiva
Comte, a., curso de filosofia fositiva
 

Similar to Vsam interview questions and answers.

Bigdata analytics K.kiruthika 2nd M.Sc.,computer science Bon secoures college...
Bigdata analytics K.kiruthika 2nd M.Sc.,computer science Bon secoures college...Bigdata analytics K.kiruthika 2nd M.Sc.,computer science Bon secoures college...
Bigdata analytics K.kiruthika 2nd M.Sc.,computer science Bon secoures college...Kiruthikak14
 
White Paper, System Z Dataset Naming Standards
White Paper, System Z Dataset Naming StandardsWhite Paper, System Z Dataset Naming Standards
White Paper, System Z Dataset Naming StandardsDan O'Dea
 
A Tale of Data Pattern Discovery in Parallel
A Tale of Data Pattern Discovery in ParallelA Tale of Data Pattern Discovery in Parallel
A Tale of Data Pattern Discovery in ParallelJenny Liu
 
Oracle Database 12c "New features"
Oracle Database 12c "New features" Oracle Database 12c "New features"
Oracle Database 12c "New features" Anar Godjaev
 
Big data analytics K.Kiruthika II-M.Sc.,Computer Science Bonsecours college f...
Big data analytics K.Kiruthika II-M.Sc.,Computer Science Bonsecours college f...Big data analytics K.Kiruthika II-M.Sc.,Computer Science Bonsecours college f...
Big data analytics K.Kiruthika II-M.Sc.,Computer Science Bonsecours college f...Kiruthikak14
 
The Apache Cassandra ecosystem
The Apache Cassandra ecosystemThe Apache Cassandra ecosystem
The Apache Cassandra ecosystemAlex Thompson
 
One Billion Black Friday Shoppers on a Distributed Data Store (Fahd Siddiqui,...
One Billion Black Friday Shoppers on a Distributed Data Store (Fahd Siddiqui,...One Billion Black Friday Shoppers on a Distributed Data Store (Fahd Siddiqui,...
One Billion Black Friday Shoppers on a Distributed Data Store (Fahd Siddiqui,...DataStax
 
About "Apache Cassandra"
About "Apache Cassandra"About "Apache Cassandra"
About "Apache Cassandra"Jihyun Ahn
 
Spark 4th Meetup Londond - Building a Product with Spark
Spark 4th Meetup Londond - Building a Product with SparkSpark 4th Meetup Londond - Building a Product with Spark
Spark 4th Meetup Londond - Building a Product with Sparksamthemonad
 
Netflix at-disney-09-26-2014
Netflix at-disney-09-26-2014Netflix at-disney-09-26-2014
Netflix at-disney-09-26-2014Monal Daxini
 
DataStax | Building a Spark Streaming App with DSE File System (Rocco Varela)...
DataStax | Building a Spark Streaming App with DSE File System (Rocco Varela)...DataStax | Building a Spark Streaming App with DSE File System (Rocco Varela)...
DataStax | Building a Spark Streaming App with DSE File System (Rocco Varela)...DataStax
 
Linux admin interview questions
Linux admin interview questionsLinux admin interview questions
Linux admin interview questionsKavya Sri
 
2005 fall cs523_lecture_4
2005 fall cs523_lecture_42005 fall cs523_lecture_4
2005 fall cs523_lecture_4abhineetverma
 
Apache Cassandra 2.0
Apache Cassandra 2.0Apache Cassandra 2.0
Apache Cassandra 2.0Joe Stein
 

Similar to Vsam interview questions and answers. (20)

Jcl faqs
Jcl faqsJcl faqs
Jcl faqs
 
Cassandra no sql ecosystem
Cassandra no sql ecosystemCassandra no sql ecosystem
Cassandra no sql ecosystem
 
Bigdata analytics K.kiruthika 2nd M.Sc.,computer science Bon secoures college...
Bigdata analytics K.kiruthika 2nd M.Sc.,computer science Bon secoures college...Bigdata analytics K.kiruthika 2nd M.Sc.,computer science Bon secoures college...
Bigdata analytics K.kiruthika 2nd M.Sc.,computer science Bon secoures college...
 
White Paper, System Z Dataset Naming Standards
White Paper, System Z Dataset Naming StandardsWhite Paper, System Z Dataset Naming Standards
White Paper, System Z Dataset Naming Standards
 
Cassandra20141113
Cassandra20141113Cassandra20141113
Cassandra20141113
 
Cassandra20141009
Cassandra20141009Cassandra20141009
Cassandra20141009
 
Db2 faqs
Db2 faqsDb2 faqs
Db2 faqs
 
A Tale of Data Pattern Discovery in Parallel
A Tale of Data Pattern Discovery in ParallelA Tale of Data Pattern Discovery in Parallel
A Tale of Data Pattern Discovery in Parallel
 
Oracle Database 12c "New features"
Oracle Database 12c "New features" Oracle Database 12c "New features"
Oracle Database 12c "New features"
 
Big data analytics K.Kiruthika II-M.Sc.,Computer Science Bonsecours college f...
Big data analytics K.Kiruthika II-M.Sc.,Computer Science Bonsecours college f...Big data analytics K.Kiruthika II-M.Sc.,Computer Science Bonsecours college f...
Big data analytics K.Kiruthika II-M.Sc.,Computer Science Bonsecours college f...
 
The Apache Cassandra ecosystem
The Apache Cassandra ecosystemThe Apache Cassandra ecosystem
The Apache Cassandra ecosystem
 
One Billion Black Friday Shoppers on a Distributed Data Store (Fahd Siddiqui,...
One Billion Black Friday Shoppers on a Distributed Data Store (Fahd Siddiqui,...One Billion Black Friday Shoppers on a Distributed Data Store (Fahd Siddiqui,...
One Billion Black Friday Shoppers on a Distributed Data Store (Fahd Siddiqui,...
 
About "Apache Cassandra"
About "Apache Cassandra"About "Apache Cassandra"
About "Apache Cassandra"
 
Spark 4th Meetup Londond - Building a Product with Spark
Spark 4th Meetup Londond - Building a Product with SparkSpark 4th Meetup Londond - Building a Product with Spark
Spark 4th Meetup Londond - Building a Product with Spark
 
Netflix at-disney-09-26-2014
Netflix at-disney-09-26-2014Netflix at-disney-09-26-2014
Netflix at-disney-09-26-2014
 
DataStax | Building a Spark Streaming App with DSE File System (Rocco Varela)...
DataStax | Building a Spark Streaming App with DSE File System (Rocco Varela)...DataStax | Building a Spark Streaming App with DSE File System (Rocco Varela)...
DataStax | Building a Spark Streaming App with DSE File System (Rocco Varela)...
 
Linux admin interview questions
Linux admin interview questionsLinux admin interview questions
Linux admin interview questions
 
2005 fall cs523_lecture_4
2005 fall cs523_lecture_42005 fall cs523_lecture_4
2005 fall cs523_lecture_4
 
User biglm
User biglmUser biglm
User biglm
 
Apache Cassandra 2.0
Apache Cassandra 2.0Apache Cassandra 2.0
Apache Cassandra 2.0
 

More from Sweta Singh

Ibm db2 interview questions and answers
Ibm db2 interview questions and answersIbm db2 interview questions and answers
Ibm db2 interview questions and answersSweta Singh
 
Ibm informatica interview question answers
Ibm informatica interview question answersIbm informatica interview question answers
Ibm informatica interview question answersSweta Singh
 
Cts informatica interview question answers
Cts informatica interview question answersCts informatica interview question answers
Cts informatica interview question answersSweta Singh
 
Accenture informatica interview question answers
Accenture informatica interview question answersAccenture informatica interview question answers
Accenture informatica interview question answersSweta Singh
 
Cobol questions and answers
Cobol questions and answersCobol questions and answers
Cobol questions and answersSweta Singh
 
Project manager interview questions and answers
Project manager interview questions and answersProject manager interview questions and answers
Project manager interview questions and answersSweta Singh
 
Google product manager interview questions answers
Google product manager interview questions answersGoogle product manager interview questions answers
Google product manager interview questions answersSweta Singh
 
Siebel 8.1 Certifications Question Answers
Siebel 8.1 Certifications Question AnswersSiebel 8.1 Certifications Question Answers
Siebel 8.1 Certifications Question AnswersSweta Singh
 

More from Sweta Singh (8)

Ibm db2 interview questions and answers
Ibm db2 interview questions and answersIbm db2 interview questions and answers
Ibm db2 interview questions and answers
 
Ibm informatica interview question answers
Ibm informatica interview question answersIbm informatica interview question answers
Ibm informatica interview question answers
 
Cts informatica interview question answers
Cts informatica interview question answersCts informatica interview question answers
Cts informatica interview question answers
 
Accenture informatica interview question answers
Accenture informatica interview question answersAccenture informatica interview question answers
Accenture informatica interview question answers
 
Cobol questions and answers
Cobol questions and answersCobol questions and answers
Cobol questions and answers
 
Project manager interview questions and answers
Project manager interview questions and answersProject manager interview questions and answers
Project manager interview questions and answers
 
Google product manager interview questions answers
Google product manager interview questions answersGoogle product manager interview questions answers
Google product manager interview questions answers
 
Siebel 8.1 Certifications Question Answers
Siebel 8.1 Certifications Question AnswersSiebel 8.1 Certifications Question Answers
Siebel 8.1 Certifications Question Answers
 

Recently uploaded

Navigating the Data Economy: Transforming Recruitment and Hiring
Navigating the Data Economy: Transforming Recruitment and HiringNavigating the Data Economy: Transforming Recruitment and Hiring
Navigating the Data Economy: Transforming Recruitment and Hiringkaran651042
 
定制(Waikato毕业证书)新西兰怀卡托大学毕业证成绩单原版一比一
定制(Waikato毕业证书)新西兰怀卡托大学毕业证成绩单原版一比一定制(Waikato毕业证书)新西兰怀卡托大学毕业证成绩单原版一比一
定制(Waikato毕业证书)新西兰怀卡托大学毕业证成绩单原版一比一Fs
 
Crack JAG. Guidance program for entry to JAG Dept. & SSB interview
Crack JAG. Guidance program for entry to JAG Dept. & SSB interviewCrack JAG. Guidance program for entry to JAG Dept. & SSB interview
Crack JAG. Guidance program for entry to JAG Dept. & SSB interviewNilendra Kumar
 
办理学位证(Massey证书)新西兰梅西大学毕业证成绩单原版一比一
办理学位证(Massey证书)新西兰梅西大学毕业证成绩单原版一比一办理学位证(Massey证书)新西兰梅西大学毕业证成绩单原版一比一
办理学位证(Massey证书)新西兰梅西大学毕业证成绩单原版一比一A SSS
 
原版定制卡尔加里大学毕业证(UC毕业证)留信学历认证
原版定制卡尔加里大学毕业证(UC毕业证)留信学历认证原版定制卡尔加里大学毕业证(UC毕业证)留信学历认证
原版定制卡尔加里大学毕业证(UC毕业证)留信学历认证diploma001
 
Escort Service Andheri WhatsApp:+91-9833363713
Escort Service Andheri WhatsApp:+91-9833363713Escort Service Andheri WhatsApp:+91-9833363713
Escort Service Andheri WhatsApp:+91-9833363713Riya Pathan
 
Drawing animals and props.pptxDrawing animals and props.pptxDrawing animals a...
Drawing animals and props.pptxDrawing animals and props.pptxDrawing animals a...Drawing animals and props.pptxDrawing animals and props.pptxDrawing animals a...
Drawing animals and props.pptxDrawing animals and props.pptxDrawing animals a...RegineManuel2
 
办理学位证(纽伦堡大学文凭证书)纽伦堡大学毕业证成绩单原版一模一样
办理学位证(纽伦堡大学文凭证书)纽伦堡大学毕业证成绩单原版一模一样办理学位证(纽伦堡大学文凭证书)纽伦堡大学毕业证成绩单原版一模一样
办理学位证(纽伦堡大学文凭证书)纽伦堡大学毕业证成绩单原版一模一样umasea
 
格里菲斯大学毕业证(Griffith毕业证)#文凭成绩单#真实留信学历认证永久存档
格里菲斯大学毕业证(Griffith毕业证)#文凭成绩单#真实留信学历认证永久存档格里菲斯大学毕业证(Griffith毕业证)#文凭成绩单#真实留信学历认证永久存档
格里菲斯大学毕业证(Griffith毕业证)#文凭成绩单#真实留信学历认证永久存档208367051
 
Back on Track: Navigating the Return to Work after Parental Leave
Back on Track: Navigating the Return to Work after Parental LeaveBack on Track: Navigating the Return to Work after Parental Leave
Back on Track: Navigating the Return to Work after Parental LeaveMarharyta Nedzelska
 
Ioannis Tzachristas Self-Presentation for MBA.pdf
Ioannis Tzachristas Self-Presentation for MBA.pdfIoannis Tzachristas Self-Presentation for MBA.pdf
Ioannis Tzachristas Self-Presentation for MBA.pdfjtzach
 
Application deck- Cyril Caudroy-2024.pdf
Application deck- Cyril Caudroy-2024.pdfApplication deck- Cyril Caudroy-2024.pdf
Application deck- Cyril Caudroy-2024.pdfCyril CAUDROY
 
Gurgaon Call Girls: Free Delivery 24x7 at Your Doorstep G.G.N = 8377087607
Gurgaon Call Girls: Free Delivery 24x7 at Your Doorstep G.G.N = 8377087607Gurgaon Call Girls: Free Delivery 24x7 at Your Doorstep G.G.N = 8377087607
Gurgaon Call Girls: Free Delivery 24x7 at Your Doorstep G.G.N = 8377087607dollysharma2066
 
美国SU学位证,雪城大学毕业证书1:1制作
美国SU学位证,雪城大学毕业证书1:1制作美国SU学位证,雪城大学毕业证书1:1制作
美国SU学位证,雪城大学毕业证书1:1制作ss846v0c
 
办理(Salford毕业证书)索尔福德大学毕业证成绩单原版一比一
办理(Salford毕业证书)索尔福德大学毕业证成绩单原版一比一办理(Salford毕业证书)索尔福德大学毕业证成绩单原版一比一
办理(Salford毕业证书)索尔福德大学毕业证成绩单原版一比一diploma 1
 
Protection of Children in context of IHL and Counter Terrorism
Protection of Children in context of IHL and  Counter TerrorismProtection of Children in context of IHL and  Counter Terrorism
Protection of Children in context of IHL and Counter TerrorismNilendra Kumar
 
MIdterm Review International Trade.pptx review
MIdterm Review International Trade.pptx reviewMIdterm Review International Trade.pptx review
MIdterm Review International Trade.pptx reviewSheldon Byron
 
Black and White Minimalist Co Letter.pdf
Black and White Minimalist Co Letter.pdfBlack and White Minimalist Co Letter.pdf
Black and White Minimalist Co Letter.pdfpadillaangelina0023
 

Recently uploaded (20)

Navigating the Data Economy: Transforming Recruitment and Hiring
Navigating the Data Economy: Transforming Recruitment and HiringNavigating the Data Economy: Transforming Recruitment and Hiring
Navigating the Data Economy: Transforming Recruitment and Hiring
 
定制(Waikato毕业证书)新西兰怀卡托大学毕业证成绩单原版一比一
定制(Waikato毕业证书)新西兰怀卡托大学毕业证成绩单原版一比一定制(Waikato毕业证书)新西兰怀卡托大学毕业证成绩单原版一比一
定制(Waikato毕业证书)新西兰怀卡托大学毕业证成绩单原版一比一
 
Crack JAG. Guidance program for entry to JAG Dept. & SSB interview
Crack JAG. Guidance program for entry to JAG Dept. & SSB interviewCrack JAG. Guidance program for entry to JAG Dept. & SSB interview
Crack JAG. Guidance program for entry to JAG Dept. & SSB interview
 
办理学位证(Massey证书)新西兰梅西大学毕业证成绩单原版一比一
办理学位证(Massey证书)新西兰梅西大学毕业证成绩单原版一比一办理学位证(Massey证书)新西兰梅西大学毕业证成绩单原版一比一
办理学位证(Massey证书)新西兰梅西大学毕业证成绩单原版一比一
 
原版定制卡尔加里大学毕业证(UC毕业证)留信学历认证
原版定制卡尔加里大学毕业证(UC毕业证)留信学历认证原版定制卡尔加里大学毕业证(UC毕业证)留信学历认证
原版定制卡尔加里大学毕业证(UC毕业证)留信学历认证
 
Escort Service Andheri WhatsApp:+91-9833363713
Escort Service Andheri WhatsApp:+91-9833363713Escort Service Andheri WhatsApp:+91-9833363713
Escort Service Andheri WhatsApp:+91-9833363713
 
Drawing animals and props.pptxDrawing animals and props.pptxDrawing animals a...
Drawing animals and props.pptxDrawing animals and props.pptxDrawing animals a...Drawing animals and props.pptxDrawing animals and props.pptxDrawing animals a...
Drawing animals and props.pptxDrawing animals and props.pptxDrawing animals a...
 
办理学位证(纽伦堡大学文凭证书)纽伦堡大学毕业证成绩单原版一模一样
办理学位证(纽伦堡大学文凭证书)纽伦堡大学毕业证成绩单原版一模一样办理学位证(纽伦堡大学文凭证书)纽伦堡大学毕业证成绩单原版一模一样
办理学位证(纽伦堡大学文凭证书)纽伦堡大学毕业证成绩单原版一模一样
 
格里菲斯大学毕业证(Griffith毕业证)#文凭成绩单#真实留信学历认证永久存档
格里菲斯大学毕业证(Griffith毕业证)#文凭成绩单#真实留信学历认证永久存档格里菲斯大学毕业证(Griffith毕业证)#文凭成绩单#真实留信学历认证永久存档
格里菲斯大学毕业证(Griffith毕业证)#文凭成绩单#真实留信学历认证永久存档
 
Back on Track: Navigating the Return to Work after Parental Leave
Back on Track: Navigating the Return to Work after Parental LeaveBack on Track: Navigating the Return to Work after Parental Leave
Back on Track: Navigating the Return to Work after Parental Leave
 
Ioannis Tzachristas Self-Presentation for MBA.pdf
Ioannis Tzachristas Self-Presentation for MBA.pdfIoannis Tzachristas Self-Presentation for MBA.pdf
Ioannis Tzachristas Self-Presentation for MBA.pdf
 
Application deck- Cyril Caudroy-2024.pdf
Application deck- Cyril Caudroy-2024.pdfApplication deck- Cyril Caudroy-2024.pdf
Application deck- Cyril Caudroy-2024.pdf
 
Gurgaon Call Girls: Free Delivery 24x7 at Your Doorstep G.G.N = 8377087607
Gurgaon Call Girls: Free Delivery 24x7 at Your Doorstep G.G.N = 8377087607Gurgaon Call Girls: Free Delivery 24x7 at Your Doorstep G.G.N = 8377087607
Gurgaon Call Girls: Free Delivery 24x7 at Your Doorstep G.G.N = 8377087607
 
美国SU学位证,雪城大学毕业证书1:1制作
美国SU学位证,雪城大学毕业证书1:1制作美国SU学位证,雪城大学毕业证书1:1制作
美国SU学位证,雪城大学毕业证书1:1制作
 
办理(Salford毕业证书)索尔福德大学毕业证成绩单原版一比一
办理(Salford毕业证书)索尔福德大学毕业证成绩单原版一比一办理(Salford毕业证书)索尔福德大学毕业证成绩单原版一比一
办理(Salford毕业证书)索尔福德大学毕业证成绩单原版一比一
 
Young Call~Girl in Pragati Maidan New Delhi 8448380779 Full Enjoy Escort Service
Young Call~Girl in Pragati Maidan New Delhi 8448380779 Full Enjoy Escort ServiceYoung Call~Girl in Pragati Maidan New Delhi 8448380779 Full Enjoy Escort Service
Young Call~Girl in Pragati Maidan New Delhi 8448380779 Full Enjoy Escort Service
 
Protection of Children in context of IHL and Counter Terrorism
Protection of Children in context of IHL and  Counter TerrorismProtection of Children in context of IHL and  Counter Terrorism
Protection of Children in context of IHL and Counter Terrorism
 
MIdterm Review International Trade.pptx review
MIdterm Review International Trade.pptx reviewMIdterm Review International Trade.pptx review
MIdterm Review International Trade.pptx review
 
Students with Oppositional Defiant Disorder
Students with Oppositional Defiant DisorderStudents with Oppositional Defiant Disorder
Students with Oppositional Defiant Disorder
 
Black and White Minimalist Co Letter.pdf
Black and White Minimalist Co Letter.pdfBlack and White Minimalist Co Letter.pdf
Black and White Minimalist Co Letter.pdf
 

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.