DBMS Tutorial

Three Schema Architecture

Understanding Three Schema Architecture: A Comprehensive Guide

Introduction

In the field of database management systems (DBMS), the Three Schema Architecture has played a pivotal role in providing a conceptual framework for data organization and management. This architecture separates the database into three distinct levels, allowing for efficient data manipulation, storage, and presentation. In this article, we will explore the Three Schema Architecture in detail, discussing its components and benefits, along with an example to illustrate its practical implementation.

What is Three Schema Architecture?

The Three Schema Architecture, also known as the ANSI/SPARC Architecture, defines three levels of abstraction in a database system: the external schema, the conceptual schema, and the internal schema.

1. External Schema: This level represents the user’s view of the database. It defines how the data appears and how users interact with it. Each user or group of users can have their own external schema, tailored to their specific needs and requirements. It provides a logical representation of the data without exposing the underlying structure or complexity.


// Example:
// External schema for a Human Resources department
CREATE VIEW EmployeeInformation AS
SELECT FirstName, LastName, Department
FROM Employees;

2. Conceptual Schema: The conceptual schema represents the overall logical view of the entire database. It defines the structure, relationships, and constraints of the data stored in the database. It acts as a bridge between the external and internal schemas, providing a global understanding of the data. Changes made at this level impact all external schemas and ensure data integrity.


// Example:
// Conceptual schema for an Employee Management System
CREATE TABLE Employees (
  EmployeeID INT PRIMARY KEY,
  FirstName VARCHAR(50),
  LastName VARCHAR(50),
  Department VARCHAR(50)
);

3. Internal Schema: The internal schema represents the physical storage and implementation details of the database. It defines how the data is stored, indexed, and organized on the underlying storage devices. The internal schema is responsible for optimizing data storage and retrieval, focusing on performance and efficiency. Changes made at this level do not affect the external or conceptual schemas.


// Example:
// Internal schema defining the storage structure for Employees
CREATE TABLE Employees (
  EmployeeID INT,
  FirstName VARCHAR(50),
  LastName VARCHAR(50),
  Department VARCHAR(50)
);

The three schema architecture provides a number of benefits, including:

  • Data independence:Ā The three schema architecture allows the physical database to be changed without affecting the external or conceptual schemas. This makes it easier to maintain the database and to add new features.
  • Flexibility:Ā The three schema architecture allows different users to view the same data in different ways. This makes it easier for users to work with the data and to get the information they need.
  • Security:Ā The three schema architecture allows the database administrator to control who has access to the data and what they can do with it. This helps to protect the data from unauthorized access.

DBMS Three schema Architecture

External Schema

The external schema is the view of the database that is seen by the users. It is a collection of user views, which are tailored to the needs of individual users or groups of users.

A user view is a description of a subset of the database that is relevant to a particular user or group of users. User views can be created using a variety of tools, including database design tools and query languages.

Conceptual Schema

The conceptual schema is a global view of the database. It is a logical description of the database that does not depend on any particular implementation.

The conceptual schema is created by the database administrator. It is used to define the structure of the database and the relationships between the data.

Internal Schema

The internal schema is a physical description of the database. It describes how the data is stored on disk and how it is accessed by the database management system.

The internal schema is created by the database administrator. It is used to optimize the performance of the database and to ensure that the data is stored in a secure manner.

Example

Here is an example of a three schema architecture for a database that stores customer information:

External Schema

Customer View: This view contains information about individual customers, such as their name, address, and phone number.

Order View: This view contains information about customer orders, such as the order date, the order amount, and the items ordered.

Conceptual Schema

Customer: This entity represents a customer. It has the attributes name, address, and phone number.

Order: This entity represents an order. It has the attributes order date, order amount, and items ordered.

CustomerOrder: This relationship represents the relationship between a customer and an order. It has the attributes customerID and orderID.

Internal Schema

Customer Table: This table stores information about customers. It has the columns customerID, name, address, and phone number.

Order Table: This table stores information about orders. It has the columns orderID, orderDate, orderAmount, and itemsOrdered.

CustomerOrder Table: This table stores information about the relationship between customers and orders. It has the columns customerID, orderID.

Advantages of Three Schema Architecture

The Three Schema Architecture offers several benefits that contribute to the efficient management of data:

1. Data Independence: By separating the external, conceptual, and internal schemas, the architecture achieves data independence. Changes in the physical storage or data structure do not impact the external schemas or the way users interact with the data. This allows for easier maintenance, upgrades, and scalability.

2. Security and Privacy: The external schema provides a level of data security by controlling the visibility and accessibility of data for different user groups. It ensures that users only have access to the data they are authorized to view or modify, protecting sensitive information.

3. Data Integration: The conceptual schema acts as a common platform for integrating multiple external schemas. It provides a consistent and unified view of the data, enabling seamless integration of data from different sources and avoiding data redundancy.

4. Performance Optimization: The internal schema allows for fine-tuning the physical storage and indexing structures to optimize data retrieval and query performance. It enables database administrators to make informed decisions regarding storage allocation and data organization based on specific system requirements.

Example: Three Schema Architecture in Practice

Let’s

consider a practical example to illustrate the Three Schema Architecture in action. Suppose we have a database for an e-commerce website with three types of users: customers, administrators, and suppliers. Each user type requires different access and views of the data.

External Schemas:
– Customer Schema: Provides a view for customers to browse products, add items to their cart, and place orders.
– Administrator Schema: Allows administrators to manage inventory, view sales reports, and handle customer support.
– Supplier Schema: Enables suppliers to update product availability, view purchase orders, and manage deliveries.

Conceptual Schema:
– Contains tables such as Customers, Products, Orders, Inventory, Suppliers, and Sales. It defines relationships and constraints between these tables.

Internal Schema:
– Specifies the physical storage details, such as indexing strategies, disk allocation, and file organization techniques.

By implementing the Three Schema Architecture, each user type can interact with the database through their respective external schema, tailored to their specific needs. Changes made to the conceptual schema, such as adding a new product table, will be reflected in all external schemas, ensuring data consistency and integrity.

Conclusion

The Three Schema Architecture provides a powerful framework for organizing, managing, and presenting data in a database management system. By separating the database into external, conceptual, and internal schemas, it achieves data independence, enhances security, facilitates data integration, and allows for performance optimization. Understanding this architecture is crucial for designing scalable and efficient database systems. By implementing the Three Schema Architecture, businesses can ensure a robust and adaptable foundation for their data management needs.

Yhaa You have done it but next? if YOU Want to your OthersĀ TutorialĀ ThenĀ Follow US HEREĀ andĀ Join Telegram.