SlideShare a Scribd company logo
1 of 31
Presented By:
Ravinder Kamboj
Objective
 Objective of this lecture is to make students be able to
understand the basic concepts of database.
 To introduce the problems with traditional file system
and advantages of database over file system.
Index
 What is DBMS?
 Traditional method of data storage
 Characteristics of file system
 Problems with Traditional approach
 What is database and DBMS?
 Advantages of DBMS
 Difference between file system and database
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
 Airlines
 Telecommunication
 HRM
Traditional Methods
 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 Redundancy
 Data Isolation
 Program/ Data Dependence
 Atomicity Problems
 Concurrent Access Anomalies
 Data Security
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.
Atomicity Problems
 If a failure occurs, the data to be restored to the consistent
state.
 Example:
 A program transfers Rs 200 from account A to account B.
 If a system failure occurs during execution of program.
 It is possible that Rs 200 debited from account A but not
credited to B.
 It is essential to database consistency that either both the
credit and debit occur, or neither occur.
 Funds transfer must be atomic, it must happen in its entirety
or not at all.
 It is difficulty to ensure atomicity in traditional file systems.
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/-
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.
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.
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 True
Locks
T1
• Lock-X(B);
• Read(B,b);
• b:=b-50;
• Write(B,b);
• Unlock(B);
• Lock-X(A);
• Read(A,a);
• a:=a+50;
• Write(A,a)
• Unlock(A);
T2
• Lock-S(A);
• Read(A,a);
• Unlock(A);
• Lock-S(B)
• Read(B,b);
• Unlock(B);
• Display(a+b);
Schedule 1
T1
• Lock-X(B);
• Read(B,b);
• b:=b-50;
• Write(B,b)
• Unlock(B)
• Lock-X(A)
• Read(A,a)
• a:=a+50;
• Write(A,a)
• Unlock(A);
T2
• Lock-S(A);
• Read(A,a);
• Unlock(A);
• Lock-S(B)
• Read(B,b);
• Unlock(B);
• Display(a+b);
Concurrency-control manager
• Grant-X(B,T1)
• Grant-S(A,T2)
• Grant-S(B,T2)
• Grant-X(A,T2)
Difference between file system and DBMS
Thank You

More Related Content

What's hot

What's hot (20)

Virtualization
VirtualizationVirtualization
Virtualization
 
Chapter 6
Chapter 6Chapter 6
Chapter 6
 
Database administrator
Database administratorDatabase administrator
Database administrator
 
Distributed System ppt
Distributed System pptDistributed System ppt
Distributed System ppt
 
Integrity Constraints
Integrity ConstraintsIntegrity Constraints
Integrity Constraints
 
Database Lecture Notes
Database Lecture NotesDatabase Lecture Notes
Database Lecture Notes
 
Database security
Database securityDatabase security
Database security
 
Virtualization in cloud computing
Virtualization in cloud computingVirtualization in cloud computing
Virtualization in cloud computing
 
Fundamentals of Database system
Fundamentals of Database systemFundamentals of Database system
Fundamentals of Database system
 
File Management in Operating System
File Management in Operating SystemFile Management in Operating System
File Management in Operating System
 
Distributed Query Processing
Distributed Query ProcessingDistributed Query Processing
Distributed Query Processing
 
Case study of amazon EC2 by Akash Badone
Case study of amazon EC2 by Akash BadoneCase study of amazon EC2 by Akash Badone
Case study of amazon EC2 by Akash Badone
 
web mining
web miningweb mining
web mining
 
Introduction to Information Security
Introduction to Information Security Introduction to Information Security
Introduction to Information Security
 
Virtualization in Cloud Computing
Virtualization in Cloud ComputingVirtualization in Cloud Computing
Virtualization in Cloud Computing
 
3 tier data warehouse
3 tier data warehouse3 tier data warehouse
3 tier data warehouse
 
Introduction to distributed database
Introduction to distributed databaseIntroduction to distributed database
Introduction to distributed database
 
Network operating system
Network operating systemNetwork operating system
Network operating system
 
Web technology
Web technologyWeb technology
Web technology
 
Slide 3 data abstraction & 3 schema
Slide 3 data abstraction & 3 schemaSlide 3 data abstraction & 3 schema
Slide 3 data abstraction & 3 schema
 

Viewers also liked

Normalization of Data Base
Normalization of Data BaseNormalization of Data Base
Normalization of Data BaseRavinder Kamboj
 
Cost estimation for Query Optimization
Cost estimation for Query OptimizationCost estimation for Query Optimization
Cost estimation for Query OptimizationRavinder Kamboj
 
Architecture of dbms(lecture 3)
Architecture of dbms(lecture 3)Architecture of dbms(lecture 3)
Architecture of dbms(lecture 3)Ravinder Kamboj
 
Query decomposition in data base
Query decomposition in data baseQuery decomposition in data base
Query decomposition in data baseSalman Memon
 
Query processing and optimization (updated)
Query processing and optimization (updated)Query processing and optimization (updated)
Query processing and optimization (updated)Ravinder Kamboj
 

Viewers also liked (7)

Query processing
Query processingQuery processing
Query processing
 
Normalization of Data Base
Normalization of Data BaseNormalization of Data Base
Normalization of Data Base
 
Cost estimation for Query Optimization
Cost estimation for Query OptimizationCost estimation for Query Optimization
Cost estimation for Query Optimization
 
Sql fundamentals
Sql fundamentalsSql fundamentals
Sql fundamentals
 
Architecture of dbms(lecture 3)
Architecture of dbms(lecture 3)Architecture of dbms(lecture 3)
Architecture of dbms(lecture 3)
 
Query decomposition in data base
Query decomposition in data baseQuery decomposition in data base
Query decomposition in data base
 
Query processing and optimization (updated)
Query processing and optimization (updated)Query processing and optimization (updated)
Query processing and optimization (updated)
 

Similar to Lecture 1&2(rdbms-ii)

Similar to Lecture 1&2(rdbms-ii) (20)

Ch01
Ch01Ch01
Ch01
 
Dbms mca-section a
Dbms mca-section aDbms mca-section a
Dbms mca-section a
 
1. Chapter One.pdf
1. Chapter One.pdf1. Chapter One.pdf
1. Chapter One.pdf
 
ms-11.pdf
ms-11.pdfms-11.pdf
ms-11.pdf
 
Unit3rd
Unit3rdUnit3rd
Unit3rd
 
database ppt(2)
database ppt(2)database ppt(2)
database ppt(2)
 
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
 
Relational database management systems
Relational database management systemsRelational database management systems
Relational database management systems
 
DBMS-1.pptx
DBMS-1.pptxDBMS-1.pptx
DBMS-1.pptx
 
Fundamentals of DBMS
Fundamentals of DBMSFundamentals of DBMS
Fundamentals of DBMS
 
Advantages of database management system
Advantages of database management system Advantages of database management system
Advantages of database management system
 
Dbms unit01
Dbms unit01Dbms unit01
Dbms unit01
 
Unit1 dbms
Unit1 dbmsUnit1 dbms
Unit1 dbms
 
Database Concepts
Database ConceptsDatabase Concepts
Database Concepts
 
Database, Lecture-1.ppt
Database, Lecture-1.pptDatabase, Lecture-1.ppt
Database, Lecture-1.ppt
 
Database System Concepts
Database System ConceptsDatabase System Concepts
Database System Concepts
 
chapter 1-Introduction Fundamentals of database system.pdf
chapter 1-Introduction Fundamentals of database system.pdfchapter 1-Introduction Fundamentals of database system.pdf
chapter 1-Introduction Fundamentals of database system.pdf
 
database introductoin optimization1-app6891.pdf
database introductoin optimization1-app6891.pdfdatabase introductoin optimization1-app6891.pdf
database introductoin optimization1-app6891.pdf
 
Introduction to Database
Introduction to DatabaseIntroduction to Database
Introduction to Database
 
Dbms
DbmsDbms
Dbms
 

More from Ravinder Kamboj

More from Ravinder Kamboj (8)

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
 
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
 
Relational database management system (rdbms) i
Relational database management system (rdbms) iRelational database management system (rdbms) i
Relational database management system (rdbms) i
 

Recently uploaded

Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfChris Hunter
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxnegromaestrong
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAssociation for Project Management
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin ClassesCeline George
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxVishalSingh1417
 
Gardella_Mateo_IntellectualProperty.pdf.
Gardella_Mateo_IntellectualProperty.pdf.Gardella_Mateo_IntellectualProperty.pdf.
Gardella_Mateo_IntellectualProperty.pdf.MateoGardella
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDThiyagu K
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docxPoojaSen20
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxDenish Jangid
 
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Shubhangi Sonawane
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17Celine George
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 

Recently uploaded (20)

Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdf
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
Gardella_Mateo_IntellectualProperty.pdf.
Gardella_Mateo_IntellectualProperty.pdf.Gardella_Mateo_IntellectualProperty.pdf.
Gardella_Mateo_IntellectualProperty.pdf.
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docx
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 

Lecture 1&2(rdbms-ii)

  • 2. Objective  Objective of this lecture is to make students be able to understand the basic concepts of database.  To introduce the problems with traditional file system and advantages of database over file system.
  • 3. Index  What is DBMS?  Traditional method of data storage  Characteristics of file system  Problems with Traditional approach  What is database and DBMS?  Advantages of DBMS  Difference between file system and database
  • 4. 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  Airlines  Telecommunication  HRM
  • 5. Traditional Methods  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.
  • 6. 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….
  • 7. Flat file  A flat file is a file containing records that have no structured interrelationship
  • 8. Traditional Method of Data Storage
  • 9. Problems: Traditional approach  Data Redundancy  Data Isolation  Program/ Data Dependence  Atomicity Problems  Concurrent Access Anomalies  Data Security
  • 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. Atomicity Problems  If a failure occurs, the data to be restored to the consistent state.  Example:  A program transfers Rs 200 from account A to account B.  If a system failure occurs during execution of program.  It is possible that Rs 200 debited from account A but not credited to B.  It is essential to database consistency that either both the credit and debit occur, or neither occur.  Funds transfer must be atomic, it must happen in its entirety or not at all.  It is difficulty to ensure atomicity in traditional file systems.
  • 15. 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/-
  • 16. 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.
  • 17. What is the solution?
  • 18. 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.
  • 19. Where does the DBMS fit?
  • 20. Programming Languages 4GL ( Database Query Languages, Data Manipulation, analysis and Reporting Languages) High-Level Languages Assembly Language Machine Language
  • 21. Difference Between File and DBMS Operations
  • 22. Advantages of DBMS  Controlling redundancy  Enforces integrity constraints  Better security  Better flexibility  Effective data sharing  Enables backup and recovery
  • 24. 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 )
  • 25. 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.
  • 26. 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.
  • 27. Solution to concurrency Anomaly S (Shared Lock) X (Exclusive Lock) S true false X false True
  • 28. Locks T1 • Lock-X(B); • Read(B,b); • b:=b-50; • Write(B,b); • Unlock(B); • Lock-X(A); • Read(A,a); • a:=a+50; • Write(A,a) • Unlock(A); T2 • Lock-S(A); • Read(A,a); • Unlock(A); • Lock-S(B) • Read(B,b); • Unlock(B); • Display(a+b);
  • 29. Schedule 1 T1 • Lock-X(B); • Read(B,b); • b:=b-50; • Write(B,b) • Unlock(B) • Lock-X(A) • Read(A,a) • a:=a+50; • Write(A,a) • Unlock(A); T2 • Lock-S(A); • Read(A,a); • Unlock(A); • Lock-S(B) • Read(B,b); • Unlock(B); • Display(a+b); Concurrency-control manager • Grant-X(B,T1) • Grant-S(A,T2) • Grant-S(B,T2) • Grant-X(A,T2)
  • 30. Difference between file system and DBMS