- Concepts:
- database systems (a set of data files, programs for accessing files)
- Data integration
- Data integrity
- Data sharing
- DBMS
- DBA
- Advantages of using a db system:
- Reduced data redundancy
- Avoid data inconsistency
- convenient/efficient data access
- data sharing made easy
- better support for integrity data isolation constraints
- The 3 level architecture for DB systems:
- View level
- Logic level
- Physical level
- Advantages:
- Data abstraction
- efficient access
- Data Model:
A set of conceptual tools for describing data, data semantics, data constraints, data relationships. Main components:
- Data structures
- Data manipulation
- Data integrity
- Concepts:
- Relational Data Structures (Ch. 2, not 2.5 & 2.6)
- Relational Data Integrity (Sec. 4.4)
- Relational Data Manipulation (Ch. 6)
Domain: a collection of data values of the same type from which one or more attributes draw their actual values
- Properties of relations:
- Attributes: unordered, unique
- Tuple: unordered, unique
- The attribute values are atomic
- Keys:
- superkey: a set of attributes with uniqueness property
- Candidate key: minimal superkey
- primary key: chosen candidate key
- foreign key: primary key of another relation stored as an attribute of this relation
Entity Integrity Constraint: Primary key of a base relation cannot take
NULL
values
Referential Integrity Contraint: A DB cannot have unmatched foreign key value
Relational algebra: an algebra system that operates on relational data
- The primitive operators:
- Selection (σ) - unary
- Projection (π) - unary
- Rename (ρ) - unary
- Union (∪) - binary
- Set difference (−) - binary
- Cartesian product (×) - binary
- Some composite operators:
- Intersection (∩)
- Set division (÷)
- Natural Join (⋈)
- Assignment (←)
- Concepts:
- DDL
- DML
- Embedded and Dynamic SQL
- Transaction control
- DDL:
CREATE
(TABLE
,VIEW
,INDEX
,TYPE
)DROP
(idem...)ALTER
(TABLE
,TYPE
)- Integrity Constraints
- Authorization/security
- DML:
SELECT
- simple queries
JOIN
queries- Queries involving aggregate functions (
GROUP BY
...HAVING
) - Set theoretic operations (union, intersect, except/minus)
- Subqueries and other advanced features (double negation)
FROM
WHERE
GROUP BY
...HAVING
- Views vs. Base Tables (
AS
): - Base tables: named, autonomous, real table relations
- Views: named, derived, virtual tables/relations
- Advantages of supporting views:
- provide automatic protection for hidden data
- Allow different users to see the data from different perspectives at the same time
- provide a "macro" or "short-hand" to simplify user queries
- provide support for logical PI to some extent
- Not all views can be updated