Chapter 5 Flashcards
What is a Database?
Allows you to access, manage, & update data.
Islands of info?
Body of info that needs to be shared but has no network connection
Data hierarchy:
Bit - 0-1's Byte - 8 bits in a byte Field Record Table (file) Database
Primary/Secondary Keys?
Primary - A field that uniquely identifies records
Secondary - An additional key that can be used with primary to locate specific data (more secure)
What is DBMS and what does it do?
Software package designed to store, manipulate, retrieve, & manage data in a database.
Helps reduce: Redundancy, inconsistency, security,
What do SQL (Structured query language) /Form/Report/Query/App Multi-users do?
Retrieve/store/modify/delete data
Normalization - 1st form
- It should only have single(atomic) valued attributes/columns.
- Values stored in a column should be of the same domain
- All the columns in a table should have unique names.
- Order in which data is stored, does not matter.
Normalization - 2nd Form
- Deals with data redundancy in vertical columns
- Should be no partial dependency (where an attribute in a table depends on only a part of the primary key and not the whole key)
Normalization - 3rd Form
- Very Uncommon
- Looks for data in tables that are not fully dependent on primary keys
- Transitive Dependency (
What are the types of relationships?
One - One
One - Many
Many - Many
What is MetaData?
- Data that describes data
- Makes databases more useful & easier to use