Informatika Komputer    
   
Daftar Isi
(Sebelumnya) Relational calculusRelational database (Berikutnya)

Relational database management system

A relational database management system (RDBMS) is a database management system (DBMS) that is based on the relational model as introduced by E. F. Codd, of IBM's San Jose Research Laboratory. Many popular databases currently in use are based on the relational database model.

RDBMSs have become[when?] a predominant choice for the storage of information in new databases used for financial records, manufacturing and logistical information, personnel data, and much more. Relational databases have often replaced legacy hierarchical databases and network databases because they are easier to understand and use. However, relational databases have been challenged by object databases, which were introduced in an attempt to address the object-relational impedance mismatch in relational database, and XML databases.[citation needed]

Contents

Market share

According to research company Gartner, the five leading commercial relational database vendors by revenue in 2011 were Oracle (48.8%), IBM (20.2%), Microsoft (17.0%), SAP including Sybase (4.6%), and Teradata (3.7%).[1]

The three leading open source implementations are MySQL, PostgreSQL, and SQLite. MariaDB is a prominent fork of MySQL prompted by Oracle's acquisition of MySQL AB.

According to Gartner, in 2008, the percentage of database sites using any given technology were (a given site may deploy multiple technologies):[2]

History

In 1974, IBM began developing System R, a research project to develop a prototype RDBMS.[3] Its first commercial product was SQL/DS, released in 1981.[4] However, the first commercially available RDBMS was Oracle, released in 1979 by Relational Software, now Oracle Corporation.[5] Other examples of an RDBMS include DB2, SYBASE, and Informix.

Historical usage of the term

The term "relational database" was invented by E. F. Codd at IBM in 1970, Codd introduced the term in his seminal paper "A Relational Model of Data for Large Shared Data Banks".[6] 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 composed of 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, which at a minimum:

  • Present 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);
  • Provide relational operators to manipulate the data in tabular form.

The first systems that were relatively faithful implementations of the relational model were from the University of Michigan; Micro DBMS (1969) and from IBM UK Scientific Centre at Peterlee; IS1 (1970–72) and its followon PRTV (1973–79). 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.

The most popular definition of an RDBMS is a product that presents a view of data as a collection of rows and columns, even if it is not based strictly upon relational theory. By this definition, RDBMS products typically implement some but not all of Codd's 12 rules.

A second 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 some RDBMSs as Truly-Relational Database Management Systems (TRDBMS), naming others Pseudo-Relational Database Management Systems (PRDBMS).

As of 2009, most commercial relational DBMSes employ SQL as their query language.[citation needed] Alternative query languages have been proposed and implemented, notably the pre-1996 implementation of Berkeley Ingres QUEL.

See also


References

  1. ^ "Oracle the clear leader in $24 billion RDBMS market". 2012-04-12. Retrieved 2013-03-01. 
  2. ^ "Market Share". Retrieved 2013-03-01. 
  3. ^ Funding a Revolution: Government Support for Computing Research. National Academies Press. 8 Jan 1999. ISBN 0309062780. "System R did not convince IBM management to abandon its existing product" 
  4. ^ S. Sumathi, S. Esakkirajan (13 Feb 2008). Fundamentals of Relational Database Management Systems. Springer. ISBN 3540483977. "The product was called SQL/DS (Structured Query Language/Data Store) and ran under the DOS/VSE operating system environment" 
  5. ^ "Defying Conventional Wisdom". Oracle Corporation. 
  6. ^ "A Relational Model of Data for Large Shared Data Banks"
(Sebelumnya) Relational calculusRelational database (Berikutnya)