Codd’s 12 Rules for RDBMS - BunksAllowed

BunksAllowed is an effort to facilitate Self Learning process through the provision of quality tutorials.

Random Posts

Codd’s 12 Rules for RDBMS

Share This
The rules come out of Codd’s theoretical work on the relational model and actually represent more of an ideal goal than a definition of a relational database. 
  1. Information rule. All information in a relational database is represented explicitly at the logical level and in exactly one way - by values in tables.
  2. Guaranteed access rule. Each and every datum (atomic value) in a relational database is guaranteed to be logically accessible by resorting to a combination of table name, primary key value, and column name.
  3. Systematic treatment of NULL values. NULL values (distinct from an empty character string or a string of blank characters and distinct from zero or any other number) are supported in a fully relational DBMS for representing missing information and inapplicable information in a systematic way, independent of the data type.
  4. Dynamic online catalog based on the relational model. The database description is represented at the logical level in the same way as ordinary data, so that authorized users can apply the same relational language to its interrogation as they apply to the regular data.
  5. Comprehensive data sublanguage rule. A relational system may support several languages and various modes of terminal use. However, there must be at least one language whose statements are expressible, per some well-defined syntax, as character strings, and that is comprehensive in supporting all of the following items: (i) Data definition, (ii) View definition, (iii) Data manipulation, (iv) Integrity constraints, (v) Authorization, (vi) Transaction boundaries (begin, commit, and rollback) 
  6. View updating rule. All views that are theoretically updateable are also updateable by the system. 
  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.
  8. Physical data independence. Application programs and terminal activities remain logically unimpaired whenever any changes are made in either storage representations or access methods. 
  9. Logical data independence. Application programs and terminal activities remain logically unimpaired when information-preserving changes of any kind that theoretically permit unimpairment are made to the base tables.
  10. Integrity independence. Integrity constraints specific to a particular relational database must be definable in the relational data sublanguage and storable in the catalog, not in the application programs. 
  11. Distribution independence. A relational DBMS has distribution independence. 
  12. Nonsubversion rule. If a relational system has a low-level (single record at a time) language, that low level cannot be used to subvert or bypass the integrity rules and constraints expressed in the higher-level relational language (multiple records at a time).



Happy Exploring!

No comments:

Post a Comment