Chapter 11 - Data Storage Design Flashcards
What is data storage design?
Data storage design is how data is stored and handled by programs that run the system.
What are the main steps of data storage design?
The main steps of data storage design are to:
- Select the data storage format
- Convert the previously made logical data model into a physical data model
- Ensure that the ERDs and DFDs balance
- Design the selected data storage format to optimize its processing efficiency
What are the main types of data storage formats?
There are two main types of data storage formats:
- Files
- Database
What is a linked list?
A linked list is a set of files that are linked together using pointers.
What are some types of files that are commonly used?
There are several different types of files:
- Master Files - Store application-critical information
- Look-up files - Contain static values (like variables)
- Transaction files - Store information that can be used to update a master file
- Audit files - Records “before” and “after” states of data as the data is altered
- History files - store past transactions
What are some examples of databases?
Some examples of databases are:
- Legacy Database
- Relational Database
- Object Database
- Multidimensional Database
What is a Legacy database?
A legacy database is a database that is based on older technology, and is rarely used to develop new applications.
What are the two types of legacy database?
There are two forms of legacy databases:
- Hierarchical database: Uses hierarchies or inverted trees to represent relationships.
- Network databases: Created to address M:N or nonhierarchical associations
What is a relational database?
A relational database is the most popular kind of database currently, based on collections of tables, each of which have a primary key. Tables are linked/related to one another by creation of a foreign key.
What is referential integrity?
Referential integrity is the ability of a relational database to ensure values that are linked between tables stay in sync.
What is an object database?
An object database is a database that is based around the principles of object orientation. All things are objects with attributes and behavior.
What is a multidimentional database?
A multidimensional database is a form of relational database that is used extensively in data warehousing.
What is an aggregation?
An aggregation is a collection of data stored by a data warehouse in multiple dimensions.
What are the main factors to consider when choosing a storage format?
The main factors to consider when choosing a data format are:
- Data Types
- Types of Application Storage
- Existing Storage Formats
- Future Needs
What is the difference between a logical ERD and a physical ERD?
A physical ERD contains references to how much data will be stored, and has considerably more metadata defined.