SlideShare a Scribd company logo
1 of 30
Presented By:
Ravinder Kamboj
Objective
 Objective of this lecture is to make students be able to
  understand the basic concepts of file system and
  database.
 To introduce the problems with traditional file system
  and advantages of database over file system.
Index
 What is file System?
 Characteristics of file system
 Traditional method of data storage
 Problems with Traditional approach
 What is database and DBMS?
 Advantages of DBMS
 Difference between file system and database
File System
 File system was an early attempt to computerize the
  manual filing system.
 A file system is a method for storing and organizing
  computer files and the data to make it easy to find and
  access.
 File Systems may use a storage device such as a hard
  disk or CD-ROM.
Characteristics of File Processing System
 It is group of files storing data of an organization.
 Each file is independent from one another.
 Each file is called flat file.
 Each file contained and processed information for one
  specific function like accounting or inventory.
 Files are designed by using application programs written
  in programming languages such as COBOL, C, C++, etc….
Flat file
 A flat file is a file containing records that have no
  structured interrelationship
Traditional Method of Data Storage
Problems: Traditional approach
 Data Security
 Data Redundancy
 Data Isolation
 Program/ Data Dependence
 Concurrent Access Anomalies
Data Security
 The data as maintained in flat files is easily accessible
    and therefore not secure.
   Example: the Customer_Transaction file has details
    about the total available balance of all customers.
   A customer wants information about his/her account
    balance.
   In a file system it is difficult to give the customer access
    to only his/her data in the file.
   Thus enforcing security constraints for entire file or for
    certain data items are difficult.
Data Redundancy
 Often the same information is duplicated in two or
  more files.
 It may lead to inconsistency
 Assume the same data is repeated in two or more files.
  If change is made to data in one file, it is required that
  change be made to the data in the other file as well.
 If this is not done, it will lead to multiple different
  values for same data field.
Data Isolation
 Data isolation means that all the related data is not
  available in one file.
 Generally, the data scattered in various files, and the
  files may be in different formats, therefore writing new
  application programs to retrieve the appropriate data
  is difficult.
Program/ Data Dependence
 Assume in a banking system there is need to find out
  the names of all customers who live within a particular
  postal-code area.
 But there is only a program to generate the list of all
  customers.
 The bank officer has now two choices: either obtain
  the list of all customers and extract the needed
  information manually or ask a system programmer to
  write the necessary application program.
 Both the alternatives are obviously unsatisfactory.
Concurrent Access Anomalies
 Many systems allow multiple users to update the data
    simultaneously. In such environment, interaction of
    concurrent updates may result in inconsistent data.
   Example: Bank account A containing Rs. 6000/-. If two
    transactions of withdraw funds( Rs 500/- and Rs 1000/-
    respectively) from account about same time, result of the
    concurrent executions may leave the account in an
    incorrect state.
   Program on the behalf of each withdrawal read the old
    balance, reduce amount and write result back.
   If both two programs are concurrent they both may read
    the value Rs 6000/-.
   Depending on which one writes the value last, the account
    may contain either Rs 5500/- or Rs 5000/-, rather than the
    correct value of Rs 4500/-
What is the solution?
Database Approach
 In order to remove all the above limitations of the File
  Based Approach, a new approach was required that
  must be more effective known as Database approach.
 A database is a computer based record keeping system
  whose over all purpose is to record and maintain
  information.
 The database is a single, large repository of data, which
  can be used simultaneously by many departments and
  users.
The Database Management System (DBMS)

 DBMS A database management system is the software system that
  allows users to define, create and maintain a database and provides
  controlled access to the data.
 A database management system (DBMS) is basically a collection of
  programs that enables users to store, modify, and extract information
  from a database as per the requirements.
 DBMS is an intermediate layer between programs and the data.
  Programs access the DBMS, which then accesses the data.
 The following are main examples of database applications:
 Banking System
 College Management System
 Inventory Control System
 Hospital Management
Where does the DBMS fit?
Programming Languages
           4GL ( Database Query
              Languages, Data
          Manipulation, analysis and
           Reporting Languages)




            High-Level Languages




             Assembly Language




             Machine Language
Difference Between File and DBMS Operations
Advantages of DBMS
 Controlling redundancy
 Enforces integrity constraints
 Better security
 Better flexibility
 Effective data sharing
 Enables backup and recovery
Controlling Redundancy
 Redundant Data
Non-Redundant Database
 In case of centralized database, data can be shared
  by number of applications and whole college can
  maintain its data with the following database:




 Every application can access the information of other’s by
 joining on the basis of column ( Rollno )
Enforcing Integrity Constraints
 Integrity of data means that data in database is always accurate.
 Integrity constraints are enforced on database.
 Example: Let us consider the case of college database and
  suppose that college having only Btech, Mtech, MCA, MSc, BCA,
  BBA and Bcom. But if a user enters the class MS, then incorrect
  information must not be stored in database and must be
  prompted that this is an invalid entry. Integrity is to be enforced
  on class attribute.
 In file system this constraint must be enforced an all the
  application separately.
 In case of DBMS this integrity constraint is applied only once on
  the class field of the General Office.
How to enforce integrity?
 Integrity rules:
    Entity Integrity rule: Primary key value should not be
     null (Mandatory field)
    Referential Integrity: The values of foreign key should
     match the primary key in parent table.
Solution to concurrency Anomaly
           S (Shared Lock)   X (Exclusive Lock)


S          true              false


X          false             false
Locks
                   T1                  T2
 •   Lock-X(B);
 •   Read(B,b);         •   Lock-S(A);
 •   b:=b-50;           •   Read(A,a);
 •   Write(B,b);        •   Unlock(A);
 •   Unlock(B);         •   Lock-S(B)
 •   Lock-X(A);         •   Read(B,b);
 •   Read(A,a);         •   Unlock(B);
 •   a:=a+50;           •   Display(a+b);
 •   Write(A,a)
 •   Unlock(A);
Schedule 1
                  T1                       T2   Concurrency-control manager
 •   Lock-X(B);                                 • Grant-X(B,T1)
 •   Read(B,b);
 •   b:=b-50;
 •   Write(B,b)
 •   Unlock(B)
                       •   Lock-S(A);           • Grant-S(A,T2)
                       •   Read(A,a);
                       •   Unlock(A);
                       •   Lock-S(B)            • Grant-S(B,T2)
                       •   Read(B,b);
                       •   Unlock(B);
                       •   Display(a+b);
                                                • Grant-X(A,T2)
 •   Lock-X(A)
 •   Read(A,a)
 •   a:=a+50;
 •   Write(A,a)
 •   Unlock(A);
Difference between file system and DBMS
Thank You

More Related Content

What's hot

Basic Concept of Database
Basic Concept of DatabaseBasic Concept of Database
Basic Concept of DatabaseMarlon Jamera
 
Database Design Slide 1
Database Design Slide 1Database Design Slide 1
Database Design Slide 1ahfiki
 
Relational database
Relational database Relational database
Relational database Megha Sharma
 
1. Introduction to DBMS
1. Introduction to DBMS1. Introduction to DBMS
1. Introduction to DBMSkoolkampus
 
Presentation on Database management system
Presentation on Database management systemPresentation on Database management system
Presentation on Database management systemPrerana Bhattarai
 
Relational Database Design
Relational Database DesignRelational Database Design
Relational Database DesignArchit Saxena
 
Fundamentals of Database system
Fundamentals of Database systemFundamentals of Database system
Fundamentals of Database systemphilipsinter
 
Database management system
Database management systemDatabase management system
Database management systemRizwanHafeez
 
Introduction to Database Management Systems (DBMS)
Introduction to Database Management Systems (DBMS)Introduction to Database Management Systems (DBMS)
Introduction to Database Management Systems (DBMS)Vijayananda Ratnam Ch
 
Introduction to Database
Introduction to DatabaseIntroduction to Database
Introduction to DatabaseSiti Ismail
 
Database design process
Database design processDatabase design process
Database design processTayyab Hameed
 

What's hot (20)

Object oriented databases
Object oriented databasesObject oriented databases
Object oriented databases
 
Basic Concept of Database
Basic Concept of DatabaseBasic Concept of Database
Basic Concept of Database
 
Database Design Slide 1
Database Design Slide 1Database Design Slide 1
Database Design Slide 1
 
Relational database
Relational database Relational database
Relational database
 
Object oriented database
Object oriented databaseObject oriented database
Object oriented database
 
1. Introduction to DBMS
1. Introduction to DBMS1. Introduction to DBMS
1. Introduction to DBMS
 
DBMS and its Models
DBMS and its ModelsDBMS and its Models
DBMS and its Models
 
Presentation on Database management system
Presentation on Database management systemPresentation on Database management system
Presentation on Database management system
 
Ordbms
OrdbmsOrdbms
Ordbms
 
Relational Database Design
Relational Database DesignRelational Database Design
Relational Database Design
 
Dbms presentaion
Dbms presentaionDbms presentaion
Dbms presentaion
 
Fundamentals of Database system
Fundamentals of Database systemFundamentals of Database system
Fundamentals of Database system
 
Database management system
Database management systemDatabase management system
Database management system
 
Introduction to Database Management Systems (DBMS)
Introduction to Database Management Systems (DBMS)Introduction to Database Management Systems (DBMS)
Introduction to Database Management Systems (DBMS)
 
Introduction to RDBMS
Introduction to RDBMSIntroduction to RDBMS
Introduction to RDBMS
 
Basic DBMS ppt
Basic DBMS pptBasic DBMS ppt
Basic DBMS ppt
 
Introduction to Database
Introduction to DatabaseIntroduction to Database
Introduction to Database
 
Database design process
Database design processDatabase design process
Database design process
 
Data models
Data modelsData models
Data models
 
Types of databases
Types of databases   Types of databases
Types of databases
 

Viewers also liked

Cardinality and participation constraints
Cardinality and participation constraintsCardinality and participation constraints
Cardinality and participation constraintsNikhil Deswal
 
Urinary system embryology
Urinary system embryologyUrinary system embryology
Urinary system embryologyishtiaqqazi
 
Introduction to RDBMS
Introduction to RDBMSIntroduction to RDBMS
Introduction to RDBMSSarmad Ali
 
The relational data model part[1]
The relational data model part[1]The relational data model part[1]
The relational data model part[1]Bashir Rezaie
 
Introduction to Software - Coder Forge - John Mulhall
Introduction to Software - Coder Forge - John MulhallIntroduction to Software - Coder Forge - John Mulhall
Introduction to Software - Coder Forge - John MulhallJohn Mulhall
 
Fundamentals of database system - Relational data model and relational datab...
Fundamentals of database system  - Relational data model and relational datab...Fundamentals of database system  - Relational data model and relational datab...
Fundamentals of database system - Relational data model and relational datab...Mustafa Kamel Mohammadi
 
4 the relational data model and relational database constraints
4 the relational data model and relational database constraints4 the relational data model and relational database constraints
4 the relational data model and relational database constraintsKumar
 
3. Relational Models in DBMS
3. Relational Models in DBMS3. Relational Models in DBMS
3. Relational Models in DBMSkoolkampus
 
Database : Relational Data Model
Database : Relational Data ModelDatabase : Relational Data Model
Database : Relational Data ModelSmriti Jain
 
14. Query Optimization in DBMS
14. Query Optimization in DBMS14. Query Optimization in DBMS
14. Query Optimization in DBMSkoolkampus
 
Rdbms
RdbmsRdbms
Rdbmsrdbms
 

Viewers also liked (14)

Cardinality and participation constraints
Cardinality and participation constraintsCardinality and participation constraints
Cardinality and participation constraints
 
Rdbms
RdbmsRdbms
Rdbms
 
Urinary system embryology
Urinary system embryologyUrinary system embryology
Urinary system embryology
 
Introduction to RDBMS
Introduction to RDBMSIntroduction to RDBMS
Introduction to RDBMS
 
The relational data model part[1]
The relational data model part[1]The relational data model part[1]
The relational data model part[1]
 
Introduction to Software - Coder Forge - John Mulhall
Introduction to Software - Coder Forge - John MulhallIntroduction to Software - Coder Forge - John Mulhall
Introduction to Software - Coder Forge - John Mulhall
 
Fundamentals of database system - Relational data model and relational datab...
Fundamentals of database system  - Relational data model and relational datab...Fundamentals of database system  - Relational data model and relational datab...
Fundamentals of database system - Relational data model and relational datab...
 
4 the relational data model and relational database constraints
4 the relational data model and relational database constraints4 the relational data model and relational database constraints
4 the relational data model and relational database constraints
 
3. Relational Models in DBMS
3. Relational Models in DBMS3. Relational Models in DBMS
3. Relational Models in DBMS
 
Denormalization
DenormalizationDenormalization
Denormalization
 
RDBMS.ppt
RDBMS.pptRDBMS.ppt
RDBMS.ppt
 
Database : Relational Data Model
Database : Relational Data ModelDatabase : Relational Data Model
Database : Relational Data Model
 
14. Query Optimization in DBMS
14. Query Optimization in DBMS14. Query Optimization in DBMS
14. Query Optimization in DBMS
 
Rdbms
RdbmsRdbms
Rdbms
 

Similar to Relational database management system (rdbms) i

Lecture 1&2(rdbms-ii)
Lecture 1&2(rdbms-ii)Lecture 1&2(rdbms-ii)
Lecture 1&2(rdbms-ii)Ravinder Kamboj
 
Database Management Systems (Mcom Ecommerce)
Database Management Systems (Mcom Ecommerce)Database Management Systems (Mcom Ecommerce)
Database Management Systems (Mcom Ecommerce)Rupen Parte
 
Introduction to Data Management
Introduction to Data ManagementIntroduction to Data Management
Introduction to Data ManagementCloudbells.com
 
Database Management Systems (DBMS)
Database Management Systems (DBMS)Database Management Systems (DBMS)
Database Management Systems (DBMS)Dimara Hakim
 
Database Management System, Lecture-1
Database Management System, Lecture-1Database Management System, Lecture-1
Database Management System, Lecture-1Sonia Mim
 
database introductoin optimization1-app6891.pdf
database introductoin optimization1-app6891.pdfdatabase introductoin optimization1-app6891.pdf
database introductoin optimization1-app6891.pdfparveen204931475
 
Bca examination 2015 dbms
Bca examination 2015 dbmsBca examination 2015 dbms
Bca examination 2015 dbmsAnjaan Gajendra
 
Mca ii-dbms- u-i-introductory concepts of dbms
Mca ii-dbms- u-i-introductory concepts of dbmsMca ii-dbms- u-i-introductory concepts of dbms
Mca ii-dbms- u-i-introductory concepts of dbmsRai University
 
data base management system (DBMS)
data base management system (DBMS)data base management system (DBMS)
data base management system (DBMS)Varish Bajaj
 
Lecture 1 to 3intro to normalization in database
Lecture 1 to 3intro to  normalization in databaseLecture 1 to 3intro to  normalization in database
Lecture 1 to 3intro to normalization in databasemaqsoodahmedbscsfkhp
 
21UCAC 41 Database Management System.ppt
21UCAC 41 Database Management System.ppt21UCAC 41 Database Management System.ppt
21UCAC 41 Database Management System.pptssuser7f90ae
 

Similar to Relational database management system (rdbms) i (20)

Lecture 1&2(rdbms-ii)
Lecture 1&2(rdbms-ii)Lecture 1&2(rdbms-ii)
Lecture 1&2(rdbms-ii)
 
Database Management Systems (Mcom Ecommerce)
Database Management Systems (Mcom Ecommerce)Database Management Systems (Mcom Ecommerce)
Database Management Systems (Mcom Ecommerce)
 
Introduction to Data Management
Introduction to Data ManagementIntroduction to Data Management
Introduction to Data Management
 
Unit01 dbms
Unit01 dbmsUnit01 dbms
Unit01 dbms
 
Database Management Systems (DBMS)
Database Management Systems (DBMS)Database Management Systems (DBMS)
Database Management Systems (DBMS)
 
Database Management System, Lecture-1
Database Management System, Lecture-1Database Management System, Lecture-1
Database Management System, Lecture-1
 
James hall ch 9
James hall ch 9James hall ch 9
James hall ch 9
 
database introductoin optimization1-app6891.pdf
database introductoin optimization1-app6891.pdfdatabase introductoin optimization1-app6891.pdf
database introductoin optimization1-app6891.pdf
 
Dbms mca-section a
Dbms mca-section aDbms mca-section a
Dbms mca-section a
 
Mydbms
MydbmsMydbms
Mydbms
 
Bca examination 2015 dbms
Bca examination 2015 dbmsBca examination 2015 dbms
Bca examination 2015 dbms
 
Dbms 1
Dbms 1Dbms 1
Dbms 1
 
Mca ii-dbms- u-i-introductory concepts of dbms
Mca ii-dbms- u-i-introductory concepts of dbmsMca ii-dbms- u-i-introductory concepts of dbms
Mca ii-dbms- u-i-introductory concepts of dbms
 
data base management system (DBMS)
data base management system (DBMS)data base management system (DBMS)
data base management system (DBMS)
 
Clifford Sugerman
Clifford SugermanClifford Sugerman
Clifford Sugerman
 
Clifford sugerman
Clifford sugermanClifford sugerman
Clifford sugerman
 
Lecture 1 to 3intro to normalization in database
Lecture 1 to 3intro to  normalization in databaseLecture 1 to 3intro to  normalization in database
Lecture 1 to 3intro to normalization in database
 
W 8 introduction to database
W 8  introduction to databaseW 8  introduction to database
W 8 introduction to database
 
21UCAC 41 Database Management System.ppt
21UCAC 41 Database Management System.ppt21UCAC 41 Database Management System.ppt
21UCAC 41 Database Management System.ppt
 
Unit3rd
Unit3rdUnit3rd
Unit3rd
 

More from Ravinder Kamboj

More from Ravinder Kamboj (13)

Data warehouse,data mining & Big Data
Data warehouse,data mining & Big DataData warehouse,data mining & Big Data
Data warehouse,data mining & Big Data
 
DDBMS
DDBMSDDBMS
DDBMS
 
Cost estimation for Query Optimization
Cost estimation for Query OptimizationCost estimation for Query Optimization
Cost estimation for Query Optimization
 
Query processing and optimization (updated)
Query processing and optimization (updated)Query processing and optimization (updated)
Query processing and optimization (updated)
 
Query processing
Query processingQuery processing
Query processing
 
Normalization of Data Base
Normalization of Data BaseNormalization of Data Base
Normalization of Data Base
 
Architecture of dbms(lecture 3)
Architecture of dbms(lecture 3)Architecture of dbms(lecture 3)
Architecture of dbms(lecture 3)
 
Sql fundamentals
Sql fundamentalsSql fundamentals
Sql fundamentals
 
Java script
Java scriptJava script
Java script
 
File Management
File ManagementFile Management
File Management
 
HTML Forms
HTML FormsHTML Forms
HTML Forms
 
DHTML
DHTMLDHTML
DHTML
 
CSA lecture-1
CSA lecture-1CSA lecture-1
CSA lecture-1
 

Recently uploaded

Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksSoftradix Technologies
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphNeo4j
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxOnBoard
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure servicePooja Nehwal
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Alan Dix
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 

Recently uploaded (20)

Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other Frameworks
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptx
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping Elbows
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 

Relational database management system (rdbms) i

  • 2. Objective  Objective of this lecture is to make students be able to understand the basic concepts of file system and database.  To introduce the problems with traditional file system and advantages of database over file system.
  • 3. Index  What is file System?  Characteristics of file system  Traditional method of data storage  Problems with Traditional approach  What is database and DBMS?  Advantages of DBMS  Difference between file system and database
  • 4. File System  File system was an early attempt to computerize the manual filing system.  A file system is a method for storing and organizing computer files and the data to make it easy to find and access.  File Systems may use a storage device such as a hard disk or CD-ROM.
  • 5. Characteristics of File Processing System  It is group of files storing data of an organization.  Each file is independent from one another.  Each file is called flat file.  Each file contained and processed information for one specific function like accounting or inventory.  Files are designed by using application programs written in programming languages such as COBOL, C, C++, etc….
  • 6. Flat file  A flat file is a file containing records that have no structured interrelationship
  • 7. Traditional Method of Data Storage
  • 8. Problems: Traditional approach  Data Security  Data Redundancy  Data Isolation  Program/ Data Dependence  Concurrent Access Anomalies
  • 9. Data Security  The data as maintained in flat files is easily accessible and therefore not secure.  Example: the Customer_Transaction file has details about the total available balance of all customers.  A customer wants information about his/her account balance.  In a file system it is difficult to give the customer access to only his/her data in the file.  Thus enforcing security constraints for entire file or for certain data items are difficult.
  • 10. Data Redundancy  Often the same information is duplicated in two or more files.  It may lead to inconsistency  Assume the same data is repeated in two or more files. If change is made to data in one file, it is required that change be made to the data in the other file as well.  If this is not done, it will lead to multiple different values for same data field.
  • 11.
  • 12. Data Isolation  Data isolation means that all the related data is not available in one file.  Generally, the data scattered in various files, and the files may be in different formats, therefore writing new application programs to retrieve the appropriate data is difficult.
  • 13. Program/ Data Dependence  Assume in a banking system there is need to find out the names of all customers who live within a particular postal-code area.  But there is only a program to generate the list of all customers.  The bank officer has now two choices: either obtain the list of all customers and extract the needed information manually or ask a system programmer to write the necessary application program.  Both the alternatives are obviously unsatisfactory.
  • 14. Concurrent Access Anomalies  Many systems allow multiple users to update the data simultaneously. In such environment, interaction of concurrent updates may result in inconsistent data.  Example: Bank account A containing Rs. 6000/-. If two transactions of withdraw funds( Rs 500/- and Rs 1000/- respectively) from account about same time, result of the concurrent executions may leave the account in an incorrect state.  Program on the behalf of each withdrawal read the old balance, reduce amount and write result back.  If both two programs are concurrent they both may read the value Rs 6000/-.  Depending on which one writes the value last, the account may contain either Rs 5500/- or Rs 5000/-, rather than the correct value of Rs 4500/-
  • 15. What is the solution?
  • 16. Database Approach  In order to remove all the above limitations of the File Based Approach, a new approach was required that must be more effective known as Database approach.  A database is a computer based record keeping system whose over all purpose is to record and maintain information.  The database is a single, large repository of data, which can be used simultaneously by many departments and users.
  • 17. The Database Management System (DBMS)  DBMS A database management system is the software system that allows users to define, create and maintain a database and provides controlled access to the data.  A database management system (DBMS) is basically a collection of programs that enables users to store, modify, and extract information from a database as per the requirements.  DBMS is an intermediate layer between programs and the data. Programs access the DBMS, which then accesses the data.  The following are main examples of database applications:  Banking System  College Management System  Inventory Control System  Hospital Management
  • 18. Where does the DBMS fit?
  • 19. Programming Languages 4GL ( Database Query Languages, Data Manipulation, analysis and Reporting Languages) High-Level Languages Assembly Language Machine Language
  • 20. Difference Between File and DBMS Operations
  • 21. Advantages of DBMS  Controlling redundancy  Enforces integrity constraints  Better security  Better flexibility  Effective data sharing  Enables backup and recovery
  • 23. Non-Redundant Database  In case of centralized database, data can be shared by number of applications and whole college can maintain its data with the following database: Every application can access the information of other’s by joining on the basis of column ( Rollno )
  • 24. Enforcing Integrity Constraints  Integrity of data means that data in database is always accurate.  Integrity constraints are enforced on database.  Example: Let us consider the case of college database and suppose that college having only Btech, Mtech, MCA, MSc, BCA, BBA and Bcom. But if a user enters the class MS, then incorrect information must not be stored in database and must be prompted that this is an invalid entry. Integrity is to be enforced on class attribute.  In file system this constraint must be enforced an all the application separately.  In case of DBMS this integrity constraint is applied only once on the class field of the General Office.
  • 25. How to enforce integrity?  Integrity rules:  Entity Integrity rule: Primary key value should not be null (Mandatory field)  Referential Integrity: The values of foreign key should match the primary key in parent table.
  • 26. Solution to concurrency Anomaly S (Shared Lock) X (Exclusive Lock) S true false X false false
  • 27. Locks T1 T2 • Lock-X(B); • Read(B,b); • Lock-S(A); • b:=b-50; • Read(A,a); • Write(B,b); • Unlock(A); • Unlock(B); • Lock-S(B) • Lock-X(A); • Read(B,b); • Read(A,a); • Unlock(B); • a:=a+50; • Display(a+b); • Write(A,a) • Unlock(A);
  • 28. Schedule 1 T1 T2 Concurrency-control manager • Lock-X(B); • Grant-X(B,T1) • Read(B,b); • b:=b-50; • Write(B,b) • Unlock(B) • Lock-S(A); • Grant-S(A,T2) • Read(A,a); • Unlock(A); • Lock-S(B) • Grant-S(B,T2) • Read(B,b); • Unlock(B); • Display(a+b); • Grant-X(A,T2) • Lock-X(A) • Read(A,a) • a:=a+50; • Write(A,a) • Unlock(A);
  • 29. Difference between file system and DBMS