What's a LDS (Linear Data Set) and what's it used for?
Answer Posted / guest
LDS is a VSAM dataset in name only. It has unstructured 4k
(4096 bytes) fixed size CI?s which do not contain control
fields and therefore from VSAM's standpoint they do not
contain any logical records. There is no free space, and no
access from Cobol. Can be accessed by DB2 and IMS fast path
datasets. LDS is essentially a table of data maintained on
disk. The 'table entries' must be created via a user program
and can only be logically accessed via a user program. When
passed, the entire LDS must be mapped into storage, and then
data is accessed via base and displacement type processing.
| Is This Answer Correct ? | 17 Yes | 10 No |
Post New Answer View All Answers
State the differences between vsam and non-vsam files?
is it required that primary key values have to be unique? Do alternate key values have to be unique?
Can you delete vsam files with the delete option of the disposition parameter of jcl?
what is the meaning of each of the values in shareopts(2 3)?
Explain the function of entry-sequenced data set?
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
Using alternate indexes in batch program?
Is it slower if you access a record through alt index as compared to primary index?
What are the different commands used in idcams for vsam?
what how do you initialize a vsam file before any operation? A vsam with alternate index?
is delete operation supported in an esds? Is rewrite operation possible in esds?
to use the rewrite command, how should the vsam file be opened?
what parameter in the define aix option is used to determine the maximum number of duplicate keys allowable ?
What are the building blocks used in vsam datasets?
what is the purpose of the verify function of idcams?