Jump to content

Relational database management system: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
No edit summary
Most common type of database in use today needs a cite, even though it's very likely true
Line 1: Line 1:
A '''relational database management system (RDBMS)''' is a [[database management system]] (DBMS) that is based on the [[relational model]] as introduced by [[Edgar F. Codd]]. Relational databases are the most common kind of database in use today (assuming one does not count a [[file system]] as a database).
A '''relational database management system (RDBMS)''' is a [[database management system]] (DBMS) that is based on the [[relational model]] as introduced by [[Edgar F. Codd]]. Relational databases are the most common kind of database in use today (assuming one does not count a [[file system]] as a database). {{citeneeded}}


==History of the term==
==History of the term==
E. F. Codd introduced the term in his [[seminal work|seminal]] paper [http://www.acm.org/classics/nov95/toc.html "A Relational Model of Data for Large Shared Data Banks"], published in 1970. In this paper and later papers he defined what he meant by '''relational'''. One well-known definition of what constitutes a relational database system is [[Codd's 12 rules]]. However, many of the early implementations of the relational model did not conform to all of Codd's rules, so the term gradually came to describe a broader class of database systems. At a minimum, these systems:
E. F. Codd introduced the term in his [[seminal work|seminal]] paper [http://www.acm.org/classics/nov95/toc.html "A Relational Model of Data for Large Shared Data Banks"], published in 1970. In this paper and later papers he defined what he meant by '''relational'''. One well-known definition of what constitutes a relational database system is [[Codd's 12 rules]]. However, many of the early implementations of the relational model did not conform to all of Codd's rules, so the term gradually came to describe a broader class of database systems. At a minimum, these systems:


* presented the data to the user as relations (a presentation in tabular form, i.e. as a collection of tables with each table consisting of a set of rows and columns, can satisfy this property)
* presented the data to the user as relations (a presentation in tabular form, i.e. as a '''collection''' of tables with each table consisting of a set of rows and columns, can satisfy this property)
* provided relational operators to manipulate the data in tabular form
* provided relational operators to manipulate the data in tabular form



Revision as of 22:24, 18 December 2006

A relational database management system (RDBMS) is a database management system (DBMS) that is based on the relational model as introduced by Edgar F. Codd. Relational databases are the most common kind of database in use today (assuming one does not count a file system as a database). [citation needed]

History of the term

E. F. Codd introduced the term in his seminal paper "A Relational Model of Data for Large Shared Data Banks", published in 1970. In this paper and later papers he defined what he meant by relational. One well-known definition of what constitutes a relational database system is Codd's 12 rules. However, many of the early implementations of the relational model did not conform to all of Codd's rules, so the term gradually came to describe a broader class of database systems. At a minimum, these systems:

  • presented the data to the user as relations (a presentation in tabular form, i.e. as a collection of tables with each table consisting of a set of rows and columns, can satisfy this property)
  • provided relational operators to manipulate the data in tabular form

The first systems that were relatively faithful implementations of the relational model were from the IBM UK Scientific Centre at Peterlee; IS1 (1970–1972) and its followon PRTV (1973–1979). The first system sold as an RDBMS was Multics Relational Data Store, first sold in 1978. Others have been Berkeley Ingres QUEL and IBM BS12.

Current usage

The most popular definition of an RDBMS is a product that presents a view of data as a collection of rows and columns not based strictly upon relational theory. The majority of real world popular RDBMS products implement some of Codd's 12 rules.

A second, theory-based school of thought argues that if a database does not implement all of Codd's rules (or the current understanding on the relational model, as expressed by Christopher J Date, Hugh Darwen and others), it is not relational. This view, shared by many theorists and other strict adherents to Codd's principles, would disqualify most DBMSs as not relational. For clarification, they often refer to RDBMSs as Truly-Relational Database Management Systems (TRDBMS), naming others Pseudo-Relational Database Management Systems (PRDBMS).

Almost all DBMSes employ SQL as their query language. Alternative query languages have been proposed and implemented, but very few have become commercial products.

Criticisms

Here are criticisms and complaints that can be found with regard to current RDBMS:

  • Vendors don't explore optional query languages outside of SQL. Many feel that SQL needs an update or overhaul, being about 30 years old.
  • They are usually statically-typed. Some feel that dynamically-typed or optional columns may make RDBMS more useful for prototyping or for domains where being nimble in a market is important. (Optional columns are implemented by returning null or blank for columns not defined in a given record.)
  • Over-ubiquity - Not all data models require a relational data store, but most developers will pick one up and run with it anyway. As a result, most non-relational DBMS have been starved of development time and innovation.

See also

  • Database Debunkings - by Fabian Pascal. Critical point of view that argues that it is important that the predicate relational should be reserved for those database systems that are fully faithful to the relational model.