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
is it required that primary key values have to be unique? Do alternate key values have to be unique?
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
What is a ci split? What is a ca split?
what do you mean by the cobol record key clause in vsam?
How does control intervals and control areas related to each other?
Explain the function of the relative record data set?
What are the building blocks used in vsam datasets?
what is a base cluster in vsam?
what do you mean by a upgrade set in vsam?
What is the purpose of having vsam data space?
What is the main function of linear dataset?
what are s0c1, s0c4, s0c5, s0c7 abends?
is it necessary that all versions of the gdg have to be of the same record length?
What is a lds (linear data set)?
What are the common vsam error conditions and codes?