Relational Databases

This stores information as a set of linked tables. So if information naturally fits into a tabular form then a relation database might be a good choice to hold that information.

The structure of the the relational database can be optimised , this is known as the normalised form. However this may not provide the fastest access, so sometimes the information is de-normalised for speed reasons. Forms are then used to present this information in a way that best suits each type of user.

One of the main advantages of relational databases is that there is a lot of experience and theory in there use over the years, in particular that they are designed to scale up to very big databases with lots of concurrent accesses.

Relational databases can store tree structured information and also it could store object oriented data. However it might not be very efficient at this because a class might have to be stored in a table with enough columns to hold all the fields of all its derived classes, so this could result in a very wide, sparsely populated, table. Also there is an overhead in having to flatten out a programs internal object data into a table structure when it needs to store or retrieve its data.

CODDs Definition of a RDBMS

  1. All information represented only in tables.
  2. Each atomic value is accessible by combination of table name, primary key and column name. - No duplicates
  3. Systematic treatment of NULLs.
  4. line data catalog maintained. - Accessible in same way as ordinary data.
  5. Comprehensive data sublanguage. Data definitions, View definitions, Data manipulation (interactive and programmed), Integrity constraints, Authorisation, Transaction boundaries.
  6. Views updated correctly.
  7. High-level Insert, Update and Delete. - Set operators, not record operators.
  8. Physical data independence.
  9. Logical data independence.
  10. Integrity independence. - Not in application program (Semantic integrity a near-impossibility here)
  11. Distribution independence. - If not distributed, no problem
  12. Non-subversion. -Low-level language can't subvert or bypass high-level language.

Structured Query Language (SQL)

SQL (Structured Query Language) is an industry standard language used to interact with relational databases.

 

Example - Database

Here we look at types of functions between sets in terms of a relational database. More information about databases on page here.

I think this gives a slightly different way to think about functions that

Example

For an example of constructing a database see this page.


metadata block
see also:

 

 

Correspondence about this page

This site may have errors. Don't use for critical systems.

Copyright (c) 1998-2023 Martin John Baker - All rights reserved - privacy policy.