Difference between revisions of "Database"

From Conservapedia
Jump to: navigation, search
m (spell check & formatting)
(Spelling, grammar, and general cleanup, typos fixed: etc) → etc.))
 
(10 intermediate revisions by 4 users not shown)
Line 1: Line 1:
A '''database''' is a collection of data.  A database program is a program for sorting, storing, and manipulation of large amounts of data such that the user can get the information she needs quicklyOne would use a database for example to store all the names and addresses of the voting population of Los Angeles for example. Relational databases have become popular due to high speed.  There are some big database vendors in the software business such as Oracle, IBM's DB2, SAP, SYBASE, Microsoft sql server, Versant as well as some free software alternatives such as postgresql, firebird, and mysql. 
+
A '''database''', simply put, is a collection of organized data.  An example would be card catalogs at libraries (originally on a collection of 3x5" cards, now usually on computers)Another example would be a collection of all the names and addresses of the voting population of Los Angeles.
  
SQL created by EF Codd at IBM (see his paper the relational model) is [[Structured Query Language]], a language for manipulating large data tables within a database.  Most relational databases have sql embedded withing themUsers ask for the data they write a "query" using sql and the database quickly returns the data.  Versant is an example of an object oriented database. OODB-s offer a different strategy than relational db-s that some claim can lead to much greater speed.  The market now seems to favor relational databases currently and only time will tell if OODB-s catch on.
+
== Terminology ==
 +
Data in a database is organized by means of a ''key'' which allows sorting the data for quick lookup and retrieval of the information.  For instance, a library's card catalog can be organized by title, or by author and title.  In the first case, the title is the key.  In the second case, the combined author and title are the key.  Each card represents a ''record'' of information, which contains ''fields'' of information related to the key for that record (such as the publisher, copyright year, and a brief description, in addition to the author and title).  Because a physical database can only be effectively sorted for one key, a card catalog had to be duplicated, with each duplicate being sorted differently (one by author name, one by title, etc.).  In database terminology, each different sorted collection is called a [[database table|table]], and the collection of all related tables is collectively called a database.
 +
 
 +
The size of the database is the number of records it containsThis can be from 1 to billions of recordsImplementation of a database in software provides several advantages over a physical database: 1) much smaller physical size, especially for large databases, 2) much faster lookup of information, 3) the ability to have multiple keys applied to the same data, rather than a separate table for the way each table is keyed, 4) the ability to quickly apply changes across multiple (or all) records.
 +
 
 +
== Organization ==
 +
Databases are organized in different ways, internally.
 +
 
 +
=== Network ===
 +
Network databases have a flexible organization in which the records can vary in layout.  The relationship between the records could be described as a directed graph ([[Network]]).
 +
 
 +
=== Object Oriented ===
 +
Object databases use an object model to represent records of data.  Versant is an example of an object oriented database. OODB-s offer a different strategy than relational db-s that some claim can lead to much greater speed.  The market now seems to favor relational databases currently and only time will tell if OODB-s catch on.
 +
 
 +
=== Relational ===
 +
The most commonly used organization is ''relational'', in which the data in the [[database table|table]]s are organized as rows (records) and columns (fields).  Relational databases differ from other database organizations in that each row has the exact same fields as every other row for a given table, although some fields may be unused for some rows.  Keys are defined as being one or more columns and data lookups using keys is much faster than lookups based on non-key fields.  Fields in one table can be associated with related fields in other tables, hence the name "relational", and data can be looked up by simple ''join'' operations that returns records from several tables based on these related fields.
 +
 
 +
[[Relational database]]s have become popular due to high speed. 
 +
 
 +
SQL created by EF Codd at IBM (see his paper the relational model) is [[Structured Query Language]], a language for manipulating large data tables within a database.  Most relational databases support the use of SQL.  Users ask for the data they write a "[[database query|query]]" using SQL and the database quickly returns the data.
 +
 
 +
== Available Databases ==
 +
There are some big database vendors in the software business such as Oracle, IBM's DB2, SAP, SYBASE, Microsoft SQL Server, Versant as well as some free software alternatives such as postgresql, firebird, and MySQL.
 +
[[Category:Software]]

Latest revision as of 21:46, June 2, 2021

A database, simply put, is a collection of organized data. An example would be card catalogs at libraries (originally on a collection of 3x5" cards, now usually on computers). Another example would be a collection of all the names and addresses of the voting population of Los Angeles.

Terminology

Data in a database is organized by means of a key which allows sorting the data for quick lookup and retrieval of the information. For instance, a library's card catalog can be organized by title, or by author and title. In the first case, the title is the key. In the second case, the combined author and title are the key. Each card represents a record of information, which contains fields of information related to the key for that record (such as the publisher, copyright year, and a brief description, in addition to the author and title). Because a physical database can only be effectively sorted for one key, a card catalog had to be duplicated, with each duplicate being sorted differently (one by author name, one by title, etc.). In database terminology, each different sorted collection is called a table, and the collection of all related tables is collectively called a database.

The size of the database is the number of records it contains. This can be from 1 to billions of records. Implementation of a database in software provides several advantages over a physical database: 1) much smaller physical size, especially for large databases, 2) much faster lookup of information, 3) the ability to have multiple keys applied to the same data, rather than a separate table for the way each table is keyed, 4) the ability to quickly apply changes across multiple (or all) records.

Organization

Databases are organized in different ways, internally.

Network

Network databases have a flexible organization in which the records can vary in layout. The relationship between the records could be described as a directed graph (Network).

Object Oriented

Object databases use an object model to represent records of data. Versant is an example of an object oriented database. OODB-s offer a different strategy than relational db-s that some claim can lead to much greater speed. The market now seems to favor relational databases currently and only time will tell if OODB-s catch on.

Relational

The most commonly used organization is relational, in which the data in the tables are organized as rows (records) and columns (fields). Relational databases differ from other database organizations in that each row has the exact same fields as every other row for a given table, although some fields may be unused for some rows. Keys are defined as being one or more columns and data lookups using keys is much faster than lookups based on non-key fields. Fields in one table can be associated with related fields in other tables, hence the name "relational", and data can be looked up by simple join operations that returns records from several tables based on these related fields.

Relational databases have become popular due to high speed.

SQL created by EF Codd at IBM (see his paper the relational model) is Structured Query Language, a language for manipulating large data tables within a database. Most relational databases support the use of SQL. Users ask for the data they write a "query" using SQL and the database quickly returns the data.

Available Databases

There are some big database vendors in the software business such as Oracle, IBM's DB2, SAP, SYBASE, Microsoft SQL Server, Versant as well as some free software alternatives such as postgresql, firebird, and MySQL.