Lecture 6: Data Management, Modeling and Manipulation Flashcards
1
Q
What is data, information and knowledge?
A
Data - raw facts without deeper meaning
Information - data shaped into meaningful form through context
Knowledge - results from experience and education
2
Q
What is a relational database?
A
- It organizes data into one or more related tables
- Consist of columns and rows
- Unique primary key identifies each row
3
Q
How can redundancy’s improve database performance?
A
Join-operations become unnecessary
4
Q
What are the requirements of normal form 1?
A
- The domain of each attribute contains only atomic values
- Atomic values are values that cannot be split into multiple logically distinct parts
- The value of each attribute only contains a single value form that domain
5
Q
What are the requirements of normal form 2?
A
- It satisfies 2NF
2. In case there is a composite key, there is no partial dependencies
6
Q
What are the requirements of normal form 3?
A
- It satisfies 3NF
2. There are no transitive dependence (attributes may not be functionally dependent on other non-key attributes)