How do you calculate record size of an alternate cluster?
Give your values for both unique and nonunique.
Answer Posted / guest
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
| Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
what do you mean by a vsam split?
What is the purpose of control intervals in vsam?
Explain the biggest disadvantage of using a vsam dataset?
What are the advantages of vsam over isam?
What are the access method services used in vsam?
What is the device independent method to indicate where a record is stored?
Describe the uses of ams?
explain how do you define a gdg in vsam?
What is the function of linear dataset in vsam?
in a cobol select statement for a ksds can you tell me what are the 3 possibilities for access?
Under idcams, multiple functions can be executed, each of which returns a condition code. What will be the condition code returned to the operating system?
what does a file status of 02 on a vsam signifies?
What are the different parameters that are used in vsam?
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
what do you mean by a shareoptions parameter (shr) in define cluster command?