What is the difference between shroptions(2 3) and
shroptions (4 3) in the Def CLUSTER ??
Answer Posted / raghu
It defines the cross-region and cross-system sharing
capabilities of the dataset. Syntax is SHR(Crvalue, CSvalue)
value 1 means multiple read OR single write (read integrity)
2 means multiple read AND single write (Write integrity) 3
means Multiple read AND multiple write 4 is same as 3, which
refreshes the buffer with every random access. default is
SHR(2 3).
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
What are the advantages of vsam over isam?
can you specify some the distinctive features of a ksds, key sequenced dataset?
what will happen if there is no secondary allocation made for datasets?
to use the rewrite command, how should the vsam file be opened?
explain in brief what are the 3 types of vsam files?
What is a ci split? What is a ca split?
What are the different commands used in idcams for vsam?
why ci and ca splits are not possible in esds and rrds?
If fspc(100 100) is specified does it mean that both the control interval and control area will be left empty because 100 % of both ci and ca are specified to be empty?
On which dataset you can have alt index?
Using alternate indexes in cics program?
what do you mean by the cobol record key clause in vsam?
How do you define an altindx?
Discuss record management 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