When CISZ is declared as 4096 at cluster level,is this true
that data will have 4096 and index will have default?????
Answer Posted / sahoo
If you mention CISZ in cluster level VSAM would assign the
same CI size to both the data component and index
component.Although the CISZ parameter can be coded at the
CLUSTER level, that's not a good idea because VSAM would
assign the same CI size to both the data component and
index component.
| Is This Answer Correct ? | 18 Yes | 2 No |
Post New Answer View All Answers
What is the use of lds (linear data set)?
what is the probability of a complete system distortion under high end low performing multiprocessor job?
what are the codes returned by the ams (access method services) command during the execution in vsam?
What is the use of KSDS,LDS,ESDS,RRDS??what is VRRDS?? How are all these useful in realtime scenario??Plz helpme out...Its a recent question in IGATE..
what parameter in the define aix option is used to determine the maximum number of duplicate keys allowable ?
in a cobol select statement for a ksds can you tell me what are the 3 possibilities for access?
What is a vsam dataset?
State the differences between vsam and non-vsam files?
Explain about the file objects in vsam?
name the utility program closely associated with vsam?
what is the syntax of ams modal commands?
is delete operation supported in an esds? Is rewrite operation possible in esds?
What is a ci split?
What is the purpose of having vsam data space?
OPEN INPUT StudentFile READ StudentFile AT END SET EndOfStudentFile TO TRUE END-READ PERFORM UNTIL EndOfStudentFile DISPLAY StudentId SPACE StudentName SPACE CourseCode SPACE YOBirth READ StudentFile AT END SET EndOfStudentFile TO TRUE END-READ END-PERFORM CLOSE StudentFile STOP RUN what will be output