VSAM ESDS: Entry-Sequenced Data Sets
Understand ESDS as a VSAM organization for append-only, physical-order storage referenced by relative byte address.
An Entry-Sequenced Data Set (ESDS) is VSAM's equivalent of a plain sequential file, storing records in the physical order they were written (entry sequence) rather than any key order, and it's a useful contrast case in interviews precisely because it lacks the indexing that makes KSDS special. Understanding when ESDS is actually the right, deliberate choice (rather than just 'the simpler VSAM option') is what separates a surface-level answer from a genuinely informed one.
An ESDS is a ship's logbook — every entry gets written on the next blank line in the order it happens, you can always read it start to finish in that same order, and you can correct a specific past entry if you know exactly which line it's on, but you'd never reorder the pages or expect to look up an entry by any key other than knowing roughly when it happened.