- DBMS - Data Independence
- DBMS - Data Schemas
- DBMS - Data Models
- DBMS - Architecture
- DBMS - Overview
- DBMS - Home
Entity Relationship Model
Relational Model
- DBMS- SQL Overview
- DBMS - ER to Relational Model
- DBMS - Relational Algebra
- DBMS - Relational Data Model
Relational Database Design
Storage and File Structure
Indexing and Hashing
Transaction And Concurrency
Backup and Recovery
DBMS Useful Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
DBMS - Architecture
The design of a DBMS depends on its architecture. It can be centrapzed or decentrapzed or hierarchical. The architecture of a DBMS can be seen as either single tier or multi-tier. An n-tier architecture spanides the whole system into related but independent n modules, which can be independently modified, altered, changed, or replaced.
In 1-tier architecture, the DBMS is the only entity where the user directly sits on the DBMS and uses it. Any changes done here will directly be done on the DBMS itself. It does not provide handy tools for end-users. Database designers and programmers normally prefer to use single-tier architecture.
If the architecture of DBMS is 2-tier, then it must have an apppcation through which the DBMS can be accessed. Programmers use 2-tier architecture where they access the DBMS by means of an apppcation. Here the apppcation tier is entirely independent of the database in terms of operation, design, and programming.
3-tier Architecture
A 3-tier architecture separates its tiers from each other based on the complexity of the users and how they use the data present in the database. It is the most widely used architecture to design a DBMS.
Database (Data) Tier − At this tier, the database resides along with its query processing languages. We also have the relations that define the data and their constraints at this level.
Apppcation (Middle) Tier − At this tier reside the apppcation server and the programs that access the database. For a user, this apppcation tier presents an abstracted view of the database. End-users are unaware of any existence of the database beyond the apppcation. At the other end, the database tier is not aware of any other user beyond the apppcation tier. Hence, the apppcation layer sits in the middle and acts as a mediator between the end-user and the database.
User (Presentation) Tier − End-users operate on this tier and they know nothing about any existence of the database beyond this layer. At this layer, multiple views of the database can be provided by the apppcation. All views are generated by apppcations that reside in the apppcation tier.
Multiple-tier database architecture is highly modifiable, as almost all its components are independent and can be changed independently.
Advertisements