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 |
differentiate between sequential files and esds files in vsam?
How to insert values for variables that are declared as COMP-3 variables in COBOL program in an already created VSAM file.
Can you delete vsam files with the delete option of the disposition parameter of jcl?
What is a lds (linear data set) and what is it used for?
What are the different dataset organizations used in vsam?
what is a Base Cluster?
print ids(/)char??what is the full form of ids??
what is buffering and how does it apply to vsam files ?
Explain the biggest disadvantage of using a vsam dataset?
How do you initialize a VSAM file before any operation? a VSAM with alternate index?
what is the difference b/w sequential and ESDS
How did you refresh a VSAM file and how frequently you do it ?
3 Answers CSC, IBM, Patni, Xansa,