Create syntax for a VSAM file ?
Answers were Sorted based on User's Feedback
Answer / prasad
DEFINE CLUSTER -
(NAME (XX17.TEST.VSAM) -
INDEXED -
KEYS (8 0) -
RECSZ (300 300) -
FREESPACE (10 5) -
MGMTCLAS (MCNEVER) -
CYL (80 20) -
SHR (1 3) -
SPEED -
REUSE) -
DATA (NAME (XX17.TEST.VSAM.DATA) -
CISZ (4096)) -
INDEX (NAME (XX17.TEST.VSAM.INDEX) -
CISZ (2048))
| Is This Answer Correct ? | 52 Yes | 6 No |
Answer / dhiraj
FOR ESDS:-
DEFINE CLUSTER (NAME(USERID.VSAM.ESDS) -
VOLUME(xxxxxx) -
TRACKS(5 2) -
RECORDSIZE(80 80) -
CISZ(4096) -
NONINDEX) -
DATA (NAME(USERID.VSAM.ESDS.DATA))
| Is This Answer Correct ? | 30 Yes | 11 No |
What are the information stored in ci?
how yo view the vsam file?
what are s0c1, s0c4, s0c5, s0c7 abends?
how many buffers are allocated to vsam ksds and esds?
What are the distinctive features of a ksda, key sequenced dataset?
can we create vsam files on multiple volumes ?
Explain the purpose of the file status clause in the select statement?
Using alternate indexes in cics program?
What does the keyranges parameter in define cluster commends do?
How do you calculate record size of an alternate cluster?
What is the biggest disadvantage of using a vsam dataset?
How do you define an ALTINDX ? How do you use ALTINDXs in batch, CICS pgm?s ?