according to these rules, no fully relational system is available yet. In particular, rules 6, 9, 10, 11, and 12 are difficult to satisfy.
THE 12 RULES
Rule 1: The Information Rule
All information in a relational database is represented explicitly at the logical level in
exactly one way by values in tables.
All data is represented in the form of relations/tables (with rows and columns)Simple
Consistent and versatile Rule 2: Guaranteed Access Rule
Each and every datum (atomic value) in a relational database is guaranteed to be logically
accessible by resorting to a table name, primary key value, and column name. All Data is uniquely identified and accessible via this identity. Rule 3: Systematic Treatment of Null Values
Null values (distinct from empty character string or a string of blank characters and distinct
from zero or any other number) are supported in the fully relational DBMS for representing missing information in a systematic way, independent of data type. Rule 4: Dynamic On-line Catalog based on the Relational Model
The database description is represented at the logical level in the same way as ordinary
data, so authorized users can apply the same relational language to its interrogation as they apply to regular data. Rule 5: Comprehensive Data Sublanguage Rule
A relational system may support several languages and various modes of terminal use (for
example, the fill-in-blanks mode). However, there must be at least one language whose statements are expressible, per some well-defined syntax, as character strings and whose ability to support all of the following is comprehensible: data definition, view definition, data manipulation (interactive and by program), integrity constraints, and transaction boundaries (begin, commit, and rollback). Rule 6: View Updating Rule
All views that are theoretically updateable are also updateable by the system.
Views are virtual tables. They appear to behave as conventional tables except that they are built dynamically when the query is run. This means that a view is always up to date. It is not always theoretically possible to update views. One problem exists when a view relates to part of a table not including a candidate key. This means that potential updates would violate the entity integrity rule. Rule 7: High-level Insert, Update, and Delete
The capability of handling a base relation or a derived relation as a single operand applies
not only to the retrieval of data but also to the insertion, update, and deletion of data. i.e. The user should be allowed to Delete, Update a set of tuples (rather than row by row)
|
|