What are the advantages of DB2 over VSAM? [closed]
What are the advantages of DB2 over VSAM?
Links take you to nice explanations, but it boils down to DB2 offering referential integrity and ability to use SQL. In addition to that DB2 supports things like procedures, views, and triggers. DB2 understands relationships between tables. In z/OS implementations DB2 tables are actually stored as linear VSAM files.
- VSAM : file system, so no concurrent updates, no logging, no back-outing
- DB2 : database : concurrent updating with logging and back-outing
精彩评论