Categories

Advertisement
⏱️ 10 min read

Data Model in DBMS (डेटा मॉडल क्या है?) | ER Model, ER Diagram पूरी जानकारी

N
By NotesMind
Advertisement

Data Model एक ऐसा blueprint है जिसकी सहायता से यह तय किया जाता है कि database में data को कैसे store, organize और access किया जाएगा।

Data Model = Database का नक्शा (Blueprint)

जैसे किसी घर को बनाने से पहले उसका नक्शा बनाया जाता है — उसी प्रकार database बनाने से पहले data model तैयार किया जाता है।

Technical Definition:
Data Model concepts का एक ऐसा collection है जो database की structure — यानी data, relationships, constraints और operations — को describe करता है।


Real-Life Example से समझें

मान लीजिए आप एक College Management System बना रहे हैं। इस system में होगा:

  • Students
  • Teachers
  • Courses
  • Departments
  • Marks
  • Fees

अब सोचिए — Student किस Department से belong करता है? कौन सा Teacher कौन सा Course पढ़ाता है? कौन सा Student कौन सा Course करता है?

Tables बनाने से पहले इन सभी सवालों का जवाब एक proper design में होना चाहिए। वही design — data model कहलाता है।


Data Model क्यों ज़रूरी है?

बिना Data Model के Data Model के साथ
Data disorganized हो जाता है Data organized रहता है
Duplicate records बढ़ते हैं Redundancy कम होती है
Searching मुश्किल होती है Querying आसान होती है
Relationships unclear होते हैं Relationships clearly defined होते हैं
Maintenance महंगी होती है Maintenance आसान और सस्ती होती है
Performance slow होती है Performance बेहतर होती है

Data Model के Objectives

Data model बनाने के पीछे कुछ ज़रूरी उद्देश्य होते हैं:

  • Data को logically organize करना
  • Data redundancy कम करना
  • Relationships clearly define करना
  • Data consistency और security improve करना
  • Database design को आसान बनाना
  • Overall performance बेहतर करना

Data Model के Components

हर data model में मुख्य रूप से पाँच components होते हैं:

Component क्या होता है Example
Entity कोई real-world object Student, Course
Attribute Entity की properties Roll No, Name, Age
Relationship दो entities के बीच का संबंध Student "Studies" Course
Constraints Data पर लगाई गई शर्तें Roll No unique होना चाहिए
Operations Data पर होने वाले काम Insert, Update, Delete

Example देखें:

 

 

Student                      Course
───────                      ──────
Roll No   ──Studies──→       Course ID
Name                         Course Name
Age

यहाँ Student और Course — Entities हैं, Roll No और Name — Attributes हैं, और "Studies" — Relationship है।


Types of Data Models — Data Model के 6 प्रकार

Data models मुख्य रूप से छः प्रकार के होते हैं:

                Data Models
                     │
      ┌──────────────┼──────────────┐
      │              │              │
 Hierarchical    Network       Relational
                                   │
                              ER Model
                                   │
                         Object-Oriented
                                   │
                        Object-Relational

हर एक को detail में समझते हैं।


1. Hierarchical Data Model

Hierarchical Model में data एक tree structure में organize होता है। इसमें एक parent के कई children हो सकते हैं, लेकिन हर child का सिर्फ एक ही parent होता है। इसे One-to-Many (1:M) model भी कहते हैं।

Diagram:

              Company
                 │
      ┌──────────┴──────────┐
      │                     │
HR Department          IT Department
      │                     │
  ┌───┴────┐           ┌────┴────┐
Rahul    Aman         Neha     Riya

Real-Life Example — Windows Folder Structure:

C Drive
   │
Documents
   │
Projects
   │
DBMS.pdf

हर folder का सिर्फ एक parent folder होता है — यही hierarchical structure है।

Advantages और Disadvantages:

Advantages Disadvantages
Searching बहुत fast होती है एक child के multiple parents नहीं हो सकते
Tree structure समझने में आसान Modify करना मुश्किल होता है
Data integrity high होती है Data redundancy हो सकती है
Simple और straightforward design Flexibility बहुत कम होती है

Real-Life Uses: Company organizational chart, File system, XML documents, Family tree


2. Network Data Model

Network Model, Hierarchical model का extended version है। इसमें एक child के कई parents हो सकते हैं — यानी यह Many-to-Many (M:N) relationships support करता है।

Diagram:

     Teacher A          Teacher B
         \                /
          \              /
        Student 1    Student 2
          /              \
         /                \
     Teacher B          Teacher A

यानी Student 1 को Teacher A और Teacher B — दोनों पढ़ा सकते हैं।

Real-Life Example — Facebook Friends:

        Rahul
       / | \
    Aman Neha Riya

हर person के कई friends हो सकते हैं — यही network structure है।

Advantages और Disadvantages:

Advantages Disadvantages
Many-to-many relationships support करता है Design complex होता है
Hierarchical से ज़्यादा flexible Beginners के लिए समझना मुश्किल
Complex relationships में faster Maintenance कठिन होती है
Redundancy कम होती है Structure बड़ा होने पर और जटिल हो जाता है

Real-Life Uses: Airline reservation systems, Banking networks, Telecommunication systems, Social networks


3. Relational Data Model ⭐ (सबसे महत्वपूर्ण)

यह आज का सबसे ज़्यादा use होने वाला data model है। इसमें data tables (rows और columns) में store होता है और tables आपस में Primary Key और Foreign Key के ज़रिए जुड़ी होती हैं।

Example — तीन tables देखें:

Student Table:

Roll Name Department
101 Rahul CSE
102 Aman ECE
103 Priya IT

Course Table:

CourseID CourseName
C101 DBMS
C102 OS

Enrollment Table:

Roll CourseID
101 C101
102 C102
103 C101

Enrollment table — Students और Courses को बिना data duplicate किए जोड़ती है। यही relational model की खूबसूरती है।

Features:

  • Table-based storage
  • Primary Keys और Foreign Keys का use
  • SQL language support करता है
  • Data redundancy कम होती है
  • Data integrity ensure होती है

Advantages और Disadvantages:

Advantages Disadvantages
समझने में आसान Large joins से performance slow हो सकती है
Modify करना simple Complex queries slow हो सकती हैं
Flexible structure Proper normalization ज़रूरी होती है
Strong relationships बहुत बड़े data पर कभी-कभी limitations आती हैं
High security और SQL support

Real-Life Uses: Banking systems, School management, Hospital management, E-commerce, Library systems

Examples: MySQL, PostgreSQL, Oracle Database, Microsoft SQL Server


4. Entity-Relationship (ER) Model

ER Model database design का एक visual blueprint होता है। Tables बनाने से पहले इसे तैयार किया जाता है — यह एक planning tool है।

इसमें तीन चीज़ें दिखाई जाती हैं:

  • Entities — जैसे Student, Course
  • Attributes — जैसे Name, Roll No, Course ID
  • Relationships — जैसे Student "Studies" Course

Example:

Student ────────Studies──────── Course
   │                               │
 Name                         Course Name
 Roll No                      Course ID

ER Model क्यों use करते हैं:

कारण फायदा
Easy planning Database बनाने से पहले structure clear हो जाता है
Visual representation Developer और client दोनों समझ सकते हैं
Simplifies design Complex databases आसान लगने लगते हैं
Better communication Team में सबको same picture मिलती है

5. Object-Oriented Data Model (OODM)

इसमें data objects के रूप में store होता है — बिल्कुल object-oriented programming की तरह। हर object में data (attributes) और functions (methods) दोनों होते हैं।

Example — Student Object:

┌─────────────────────┐
│    Student Object   │
├─────────────────────┤
│ Roll     = 101      │
│ Name     = Rahul    │
│ Dept     = CSE      │
├─────────────────────┤
│ Display()           │
│ Update()            │
└─────────────────────┘

Advantages:

Advantages विवरण
Complex data store होता है Images, audio, video सब support
Inheritance support Code reuse होता है
Encapsulation Data और functions एक जगह
Reusable code Development fast होती है

Applications: CAD/CAM software, Multimedia databases, GIS systems, Scientific applications


6. Object-Relational Data Model (ORDM)

यह Relational और Object-Oriented दोनों models का combination है। इसमें traditional tables के साथ-साथ complex data types और object-oriented concepts भी support होते हैं।

Example:

एक Employee table में अलग-अलग address fields की जगह एक Address Object directly store किया जा सकता है:

┌────────────────────────────┐
│       Employee Table       │
├────────────────────────────┤
│ ID                         │
│ Name                       │
│ Address Object →           │
│    Phone                   │
│    City                    │
│    Pincode                 │
└────────────────────────────┘

Advantages:

Advantages विवरण
SQL support Relational model जैसी queries
Objects support Complex data types handle होते हैं
High performance दोनों models के फायदे एक साथ
Flexible Simple और complex दोनों तरह का data

Examples: PostgreSQL, Oracle


सभी Data Models का Comparison

Feature Hierarchical Network Relational ER Model Object-Oriented Object-Relational
Structure Tree Graph Tables Diagram Objects Tables + Objects
Relationship 1:M M:N Any (Keys) Visual Objects Objects + Tables
Flexibility कम मध्यम अधिक अधिक अधिक सबसे अधिक
Complexity कम अधिक कम कम अधिक अधिक
SQL Support नहीं नहीं हाँ नहीं Limited हाँ
Main Use File systems Networks Business apps DB Design Complex apps Enterprise systems

Summary — एक नज़र में

  • Data Model = Database का blueprint
  • यह define करता है कि data कैसे store, relate और access होगा
  • 6 major models होते हैं:
Model एक लाइन में
Hierarchical Tree structure, एक parent per child
Network Graph structure, multiple parents allowed
Relational Tables + Keys, सबसे ज़्यादा use
ER Model Visual blueprint, design के लिए
Object-Oriented Objects में data, multimedia के लिए
Object-Relational दोनों का combination, enterprise के लिए

Practice Questions

Short Answer Questions:

  1. Data Model क्या है?
  2. Data Model क्यों ज़रूरी है?
  3. Data Model के components कौन-कौन से हैं?
  4. Hierarchical Model क्या है?
  5. Network Model क्या है?
  6. Relational Model क्या है?
  7. ER Model क्या है?
  8. Object-Oriented Data Model क्या है?
  9. Object-Relational Data Model क्या है?
  10. आज सबसे ज़्यादा use होने वाला data model कौन सा है और क्यों?

Long Answer Questions:

  1. Data Models को suitable examples के साथ explain करें।
  2. Hierarchical और Network Data Models की तुलना करें।
  3. Relational Data Model को diagrams और examples के साथ explain करें।
  4. सभी छः Data Models की आपस में तुलना करें।
  5. हर Data Model के advantages और disadvantages describe करें।

 


FAQ

Q1. Data Model और Database में क्या फर्क है?

Data Model एक blueprint है जो यह define करता है कि database कैसा दिखेगा — data कहाँ होगा, relationships कैसी होंगी। Database वह actual system है जहाँ real data store होता है। सोचिए — data model घर का नक्शा है, database वह असली घर जिसमें लोग रहते हैं।

Q2. सबसे ज़्यादा use होने वाला Data Model कौन सा है?

Relational Data Model सबसे ज़्यादा use होता है — MySQL, Oracle, PostgreSQL, SQL Server सब इसी पर based हैं। इसका कारण है इसकी simplicity, SQL support, और strong relationship management।

Q3. Hierarchical और Network Data Model में क्या फर्क है?

Hierarchical Model में हर child का सिर्फ एक parent होता है — जैसे Windows का folder system। Network Model में एक child के कई parents हो सकते हैं — जैसे social media connections जहाँ एक person कई लोगों से connected होता है। Network model ज़्यादा flexible है लेकिन design complex होता है।

 

Advertisement

💬 Leave a Comment & Rating