Database Design/Fundamental Concepts

From Wikibooks, open books for an open world
Jump to navigation Jump to search

What Is a Database?[edit | edit source]

A database is a shared collection of related data used to support the activities of a particular organization. A database can be viewed as a repository of data that is defined once and then accessed by various users as shown in Figure 2.1.

Figure 2.1. A database is a repository of data.

Database Properties[edit | edit source]

A database has the following properties:

  • It is a representation of some aspect of the real world or a collection of data elements (facts) representing real-world information.
  • A database is logical, coherent and internally consistent.
  • A database is designed, built and populated with data for a specific purpose.
  • Each data item is stored in a field.
  • A combination of fields makes up a table. For example, each field in an employee table contains data about an individual employee.

A database can contain many tables. For example, a membership system may contain an address table and an individual member table as shown in Figure 2.2. Members of Science World are individuals, group homes, businesses and corporations who have an active membership to Science World. Memberships can be purchased for a one- or two-year period, and then renewed for another one- or two-year period.

Figure 2.2. Membership system at Science World by N. Eng.

In Figure 2.2, Minnie Mouse renewed the family membership with Science World. Everyone with membership ID#100755  lives at 8932 Rodent Lane. The individual members are Mickey Mouse, Minnie Mouse, Mighty Mouse, Door Mouse, Tom Mouse, King Rat, Man Mouse and Moose Mouse.

Database Management System[edit | edit source]

A database management system (DBMS) is a collection of programs that enables users to create and maintain databases and control all access to them. The primary goal of a DBMS is to provide an environment that is both convenient and efficient for users to retrieve and store information.

With the database approach, we can have the traditional banking system as shown in Figure 2.3. In this bank example, a DBMS is used by the Personnel Department, the Account Department and the Loan Department to access the shared corporate database.

Figure 2.3. A bank database management system (DBMS).

Key Terms[edit | edit source]

data elements
facts that represent real-world information
database
a shared collection of related data used to support the activities of a particular organization
database management system (DBMS)
  a collection of programs that enables users to create and maintain databases and control all access to them
table
a combination of fields

Exercises[edit | edit source]

  1. What is a database management system (DBMS)?
  2. What are the properties of a DBMS?
  3. Provide three examples of a real-world database (e.g., the library contains a database of books).

Attribution[edit | edit source]

This chapter of Database Design (including images, except as otherwise noted) is a derivative copy of Database System Concepts by Nguyen Kim Anh licensed under Creative Commons Attribution License 3.0 license

The following material was written by Nelson Eng:

  1. Example under Database Properties
  2. Key Terms

The following material was written by Adrienne Watt:

  1. Exercises

References[edit | edit source]