- A relational DBMS must be able to manage databases entirely through its relational capabilities.
- Information rule-- All information in a relational database (including tableand column names) is represented explicitly as values in tables.
- Guaranteed access--Every value in a relational database is guaranteed to beaccessible by using a combination of the table name, primary key value, and column name.
- Systematic null value support--The DBMS provides systematic support for the treatment of null values (unknown or inapplicable data), distinct from default values, and independent of any domain.
- Active, online relational catalog--The description of the database and its contents is represented at the logical level as tables and can therefore be queried using the database language.
- Comprehensive data sublanguage--At least one supported language must have a well-defined syntax and be comprehensive. It must support data definition,manipulation, integrity rules, authorization, and transactions.>
- View updating rule--All views that are theoretically updatable can be updated through the system.
- Set-level insertion, update, and deletion--The DBMS supports not only set level retrievals but also set-level inserts, updates, and deletes.
- Physical data independence--Application programs and ad hoc programs arelogically unaffected when physical access methods or storage structures arealtered.
- Logical data independence--Application programs and ad hoc programs are logically unaffected, to the extent possible, when changes are made to the table structures.
- Integrity independence--The database language must be capable of defining integrity rules. They must be stored in the online catalog, and they cannot be by passed.
- Distribution independence--Application programs and ad hoc requests are logically unaffected when data is first distributed or when it is redistributed.
- Nonsubversion--It must not be possible to bypass the integrity rules defined through the database language by using lower-level languages.
This method has several advantages and many disadvantages. In its favor is the fact that the physical structure of data on a disk becomes unimportant. The programmer simply stores pointers to the next location, so data can be accessed in this manner. Also, data can be added and deleted easily. However, different groups of information could not be easily joined to form new information. The format of the data on the disk could not be arbitrarily changed after the database was created. Doing so would require the creation of a new database structure.Codd's idea for an RDBMS uses the mathematical concepts of relational algebra to break down data into sets and related common subsets.
1 comments:
Hi, Perfect explanation. Can I know more information on SQL.Thank U.
Post a Comment