What is the upgrade set?
Answer / guest
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.
| Is This Answer Correct ? | 3 Yes | 0 No |
There are at least seven IDCAMS commands; name and explain each of them ?.
can alternate index use in ESDS since it does not contain primary index? if yes can you explain?
what is the purpose of the verify function of idcams?
While designing vsam files,what is the best way to choose control interval size for the data and the index?
Explain about the file objects in vsam?
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 will happen if there is no secondary allocation made for datasets?
is there any lock for vsam file so that no one can update the vsam file ?
What are the different parameters that are used in vsam?
How do you load a VSAM data set with records ?
What is the meaning of VSAM RETURN-CODE 28?
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