Database Design   «Prev  Next»

Lesson 2The relational database model
ObjectiveDescribe the Relational Database Model

Describe Relational Database Model

The structure of every database is determined by a database model. A database model is a formal structure for organizing and linking data in a database.

What are the Standard Database Models?

The standard database models are:
  1. Relational model: A formal structure that organizes data into relations (i.e., tables).
  2. Object-oriented model: Object/relational database management systems (ORDBMSs) add new object storage capabilities to the relational systems at the core of modern information systems
  3. hierarchical model: A database model that organizes data in a top-down (inverted tree) structure.
  4. network model: An extension of the hierarchical model. (See hierarchical model.)
The major types of data models in the history of Databases are listed below.
  • Relational Model organizes data into two dimensional arrays known as relations(tables) and each relation consists of rows and columns. Another major characteristic of relational model is that of keys, designated columns in a relation used to order data or establish relations.
    Relational Model
    Relational Model

    It is based on the relational model, which organizes data into tables comprising columns and rows. In the relational database model:
    1. A table[1] is the largest structure.
    2. A field[2] (column) is the smallest structure.
    3. A record: (row) contains all the fields in a table. A particular instance of the subject of a table.

    Table, field, and record are terms typically used in general database discussions. Table, column, and row are used to physically describe a tabular format.
    Definition: It consists of five components:
    1. An open ended collection of scalar types, including type BOOLEAN in particular
    2. A relation type generator and an intended interpretation for relations of types generated thereby
    3. Facilities for defining relation variables of such generated relation types
    4. A relational assignment operator for assigning relation values to such relation variables
    5. A relationally complete (but otherwise open ended) collection of generic relational operators for deriving relation values from other relation values
  • Object Model: The "Object Model" aims to reduce the overhead of converting information representation in the database to an application specific representation. Unlike a traditional database, an object model allows for data persistence and storage by storing objects in the databases. The relationships between various objects are inherent in the structure of the objects. This is mainly used for complex data structures such as 2D and 3D graphics which must otherwise be flattened before storage in a relational database.
    Diagram of the Object Model
    2) Diagram of the Object Model

    Evolution of Object Databases: Object oriented databases or object databases incorporate the object data model to define data structures on which database operations such as CRUD can be performed. They store objects rather than data such as integers and strings. The relationship between various data is implicit to the object and manifests as object attributes and methods Object database management systems extend the object programming language with 1) transparently persistent data, 2) concurrency control, 3) data recovery, 4) associative queries.
  • 3) Hierarchical model: The "hierarchical model" contains data organized into a tree-like structure. This supports parent-child relationships between data similar to a tree data structure where object types are represented by nodes and their relationships are represented by arcs. This model is restrictive in that it only allows one to many relationship (a parent can have many children but a child can only have one parent) An example of this is Jump to search IBM's Information Management System (IMS), which is a joint hierarchical database with extensive transaction processing capabilities.

4. Network Model

Network Model is similar to the hierarchical model in representation of data but allows for greater flexibility in data access as it supports many to may relationships. It is a database model that was developed as an evolution of the hierarchical model to address some of its limitations. It allows for more flexible and complex relationships between data records, representing them as a graph-like structure. The Network Model was standardized by the Conference on Data Systems Languages (CODASYL)[3] in the late 1960s. Here are some key characteristics of the Network Model with respect to databases: The "Network Model" and the "Relational Model" are two distinct database models that differ in structure, relationships, and usability. Here's a breakdown of their key differences:
  1. Structure and Representation
    • Network Model:
      • Data is represented as a graph or a network, with records (nodes) connected by links (edges).
      • Relationships are explicitly defined using pointers, creating a complex web of data.
      • It follows a many-to-many relationship approach and organizes data in a hierarchical or interconnected fashion.
      • Example: A "Customer" record may directly link to multiple "Orders" and vice versa.
    • Relational Model:
      • Data is represented in tabular form, where information is stored in tables (relations).
      • Relationships are defined logically using keys (primary and foreign keys) rather than physical pointers.
      • Each table can represent one entity type, and links are established using column values.
      • Example: A "Customer" table and an "Orders" table can be related using a "CustomerID" foreign key.
  2. Relationships
    • Network Model:
      • Relationships are navigational and pre-defined, with links (pointers) directly connecting related records.
      • Accessing related data requires traversing the network, often through predefined paths.
      • Suited for complex relationships but requires more effort to design and maintain.
    • Relational Model:
      • Relationships are logical and flexible, established through common fields.
      • Data can be queried dynamically using SQL without the need for pre-defined navigational paths.
      • Simplifies data modeling, making it easier to add or modify relationships.
  3. Querying Data
    • Network Model:
      • Requires navigational commands and procedural languages like CODASYL DML.
      • Queries involve following pointers, which can be complex and less intuitive.
      • Performance is high for pre-defined queries but struggles with ad hoc queries.
    • Relational Model:
      • Uses Declarative SQL, where users specify what they want rather than how to retrieve it.
      • Flexible and efficient for ad hoc queries.
      • SQL queries are easier to learn and use than navigational languages.
  4. Flexibility and Usability
    • Network Model:
      • Less flexible; changes to the schema or relationships often require restructuring of the database.
      • More difficult to use and maintain due to its navigational nature and reliance on pointers.
      • Best suited for applications with fixed, well-known queries and relationships.
    • Relational Model:
      • Highly flexible; changes to tables or relationships are easier to implement.
      • Widely adopted because of its simplicity, abstraction, and ease of maintenance.
      • Best suited for dynamic applications where relationships may evolve over time.
  5. Performance
    • Network Model:
      • Offers high performance for navigational queries, especially in scenarios with frequent and complex many-to-many relationships.
      • Inefficient for unstructured or ad hoc queries because of its reliance on traversing pointers.
    • Relational Model:
      • Performance can vary depending on indexing and query optimization but is generally slower than the Network Model for complex relationships.
      • More efficient for dynamic, unpredictable queries due to its SQL-driven approach.
  6. Real-World Usage
    • Network Model:
      • Historically used in hierarchical and network database systems like IDMS and IMS.
      • Found in legacy systems and specialized applications requiring high performance in predefined relationships.
    • Relational Model:
      • Dominates modern database systems such as Oracle, MySQL, PostgreSQL, and SQL Server.
      • Common in applications across industries due to its standardization, flexibility, and ease of use.

Summary of Differences:
Feature Network Model Relational Model
Structure Graph-like (nodes and edges) Tables (rows and columns)
Relationships Navigational (pointers) Logical (keys)
Querying Procedural Declarative (SQL)
Flexibility Rigid and complex Flexible and simple
Performance High for predefined queries Efficient for dynamic queries
Use Cases Legacy systems, fixed relationships Modern applications, dynamic use
In summary, the "Network Model" excels in tightly controlled environments with complex predefined relationships, while the "Relational Model" offers greater flexibility, usability, and scalability, making it the dominant choice in modern database systems.

Relational Model Concepts

The relational model represents the database as a collection of relations. Informally, each relation resembles a table of values or, to some extent, a flat file of records. It is called a flat file because each record has a simple linear or flat structure. There are important differences between relations and files, as we shall soon see. When a relation is thought of as a table of values, each row in the table represents a collection of related data values. A row represents a fact that typically corresponds to a real-world entity or relationship. The table name and column names are used to help to interpret the meaning of the values in each row. For example, a student table is called STUDENT because each row represents facts about a particular student entity. The column names 1) Name, 2)Student_number, 3) Class, and 4) Major specify how to interpret the data values in each row, based on the column each value is in. All values in a column are of the same data type.
In the formal relational model terminology,
  1. a row is called a tuple,
  2. a column header is called an attribute, and
  3. the table is called a relation.
The data type describing the types of values that can appear in each column is represented by a domain of possible values.
  • XML model The XML model has emerged as a standard for exchanging data over the Web, and has been used as a basis for implementing several prototype native XML systems. XML uses hierarchical tree structures. It combines database concepts with concepts from document representation models. Data is represented as elements; with the use of tags, data can be nested to create complex hierarchical structures. This model conceptually resembles the object model but uses different terminology. XML capabilities have been added to many commercial DBMS products. In the next lesson, we will examine a relational database table in detail.
[1] table: A collection of data arranged in rows and columns is known as a table and is the largest structure in a relational database.
[2] field: The smallest structure in a table; contains data describing the subject of a table.
[3] CODASYL: The Conference on Data Systems Languages (CODASYL) was a consortium formed in 1959 to guide the development of a standard programming language for data processing. While their initial goal of a unified language wasn't achieved, CODASYL is best known for its work on the network database model, which heavily influenced early database management systems.

SEMrush Software 2SEMrush Software Banner 2