SlideShare une entreprise Scribd logo
1  sur  22
DISTRIBUTED
DATABASE
Dr. Kamal Gulati
www.mybigdataanalytics.in
Database
Logical interrelated collection of
shared data, along with description
of data, physically distributed over a
computer network.
What is Distributed Database?
•A distributed database (DDB) is a collection of
multiple, logically interrelated databases
distributed over a computer network.
• A distributed database management system
(DDBMS) is the software that manages the DDB and
provides an access mechanism that makes this
distribution transparent to the users
Characteristics
All sites are interconnected.
Fragments can be replicated.
Logically related shared data can becollected.
Data at each and every site is controlled by the
DBMS.
Each Distributed Database Management System takes
part in at least one global application.
Functionality
1. Security
2. Keeping track of data
3. Replicated data management
4. System catalog management
5. Distributed transaction management
6. Distributed database recovery
A DDBMSmainly classified into two
types:
◦1. Homogeneous Distributed database
management systems
◦2. Heterogeneous Distributed database
management systems
Homogeneous DDBMS
1. In a homogeneous distributed database all sites have identical
software and are aware of each other and agree to cooperate in
processing user requests.
2. The homogeneous system is much easier to design and manage.
3. The operating system used, at each location must be same or
compatible.
4. The database application (or DBMS) used at each location must be
same or compatible.
Heterogeneous DDBMS
1. In a heterogeneous distributed database different sites may use different
schema and software.
2. In heterogeneous systems, different nodes may have different hardware &
software and data structures at various nodes or locations are also
incompatible.
3. Different computers and operating systems, database applications or data
models may be used at each of the locations.
4. On heterogeneous system, translations are required to allow
communication between different sites (or DBMS).
5. The heterogeneous system is often not technically or economically feasible.
In this system, a user at one location may be able to read but not update
the data at another location.
Advantages
1. Less danger of a single-point failure. When one of the computers fails, the
workload is picked up by other workstations.
2. Data are also distributed at multiple sites.
3. The end user is able to access any available copy of the data, and an end
user's request is processed by any processor at the data location.
4. Improved communications. Because local sites are smaller and located
closer to customers.
5. Reduced operating costs. It is more cost- effective to add workstations to a
network than to update a mainframe system.
6. Faster data access, faster data processing.
7. A distributed database system spreads out the systems workload by
processing data at several sites.
Disadvantages
1. Complexity of management and control.
2. Applications must recognize data location, and they must be
able to stitch together data from various sites.
3. Security.
4. Increased storage and infrastructure requirements.
5. Multiple copies of data has to be at different sites, thus an
additional disk storage space will be required.
6. The probability of security lapses increases when data are
located at multiple sites.
What is Parallel database...??
1. A parallel database system is to improve performance through
parallelization of various operations, such as loading data, building
indexes and evaluating queries.
2. The distribution is solely done on the bases of performance.
3. Parallel databases improve processing and input/output speeds
by using multiple CPUs and disks in parallel.
4. Many operations are performed simultaneously
5. Data may be stored in a distributed fashion.
Database and Parallel Database
Characteristics ParallelDatabase Distributed database
Definition It is a software system
where multiple
processors or machinesare used
to
execute and run queries in
parallel.
It is a software system that
manages multiple logically
interrelated databases distributed
over a computer network.
Geographical
Location
The nodes are locatedat
geographically
same location.
The nodes are usually located
at geographically different
locations.
Execution
Speed
Quicker Slower
Overhead Less More
Nodetypes Compulsorily Homogeneous Need not be homogeneous
Performance Lower reliability &
availability.
Higher reliability &
availability.
Scopeof
Expansion
Difficult to expand Easier to expand
Backup Backup at one site only Backup at multiple sites
Consistency Maintaining consistency is easier Maintaining consistency is
difficult.
Data fragmentation
1. Fragmentation is a process of division or the mapping of the
tables based on the columns and rows of data into the smallest
unit of data.
2. Data that has broken down is still possible to be combined again
with the intention to complete the data collection using
fragmentation.
3. Fragmentation is a database server feature that allows you to
control where data is stored at the table level.
4. Fragmentation enables you to define groups of rows or index keys
within a table.
Replication
Replication is that we store severalcopies of a relation or relation
fragment. An entire relation can be replicated at one or more
sites.
Similarly, one or more fragments of a relation can be replicated
at othersites.
For example, if a relation R is fragmented into R1,R2, and R3, there
might be just one copy of R1, whereas R2 is replicated at two other
sites and R3 is replicated at all sites.
Two Fold Replication
The motivation for replication is twofold:
1. Increased Availability of Data:Ifa site that contains a replica
goes down, wecan find the same data at other sites. Similarly,
if local copies of remote relations are available, we are less
vulnerable to failure of communication links.
2. Faster Query Evaluation: Queries can execute faster by using a
local copy of a relation instead of going to a remotesite.
Distributed Transaction
In a distributed DBMS, a given transaction is submitted at some one site, but it can
access data at other sites as well.
When a transaction is submitted at some site, the transaction manager at that
site breaks it up into a collection of one or more sub-transactions that execute at
different sites, submits them to transaction managers at the other sites, and
coordinates their activity.
Distributed Concurrency Control: How can locks for objects stored across several
sites be managed?
Distributed Recovery: Transaction atomicity must be ensured when a transaction
commits, all its actions, across all the sites at which it executes, must persist.
Similarly, when a transaction aborts, none of its actions must be allowed to persist.
Distributed Concurrency Control
• The choice of technique determines which objects are
to be locked. When locks are obtained and released is
determined by the concurrency control protocol. We
now consider how lock and unlock requests are
implemented in a distributed environment. Lock
management can be distributed across sites in many
ways:
Centralized : A single site is in charge of handling
lock and unlock requests for all objects.
Primary Copy: One copy of each object is designated
the primary copy. All requests to lock or unlock a copy
of this object are handled by the lock manager at the
site where the primary copy is stored, regardless of
where the copy itself is stored.
Fully Distributed : Requests to lock or unlock a copy
of an object stored at a site are handled by the lock
manager at the site where the copy is stored.
DISTRIBUTED RECOVERY
Recovery in a distributed DBMS is more complicated than in a
centralized DBMS for the following reasons:
◦ New kinds of failure can arise : Failure of communication
links and failure of a remote site at which a sub-transaction
is executing.
◦ Either all sub-transactions of a given transaction must commit
or none must commit, and this property must be guaranteed
despite any combination of site and link failures. This
guarantee is achieved using a commit protocol.
Concepts Of Locks
A lock is used when multiple users need to access a database
concurrently. This prevents data from being corrupted or invalidated
when multiple users try to write to the database.
Any single user can only modify those database records (that is, items in the
database) to which they have applied a lock that gives them exclusive
access to the record until the lock is released.
Locking not only provides exclusivity to write but also prevents (or controls)
reading of unfinished modifications.

Contenu connexe

Tendances

11. Storage and File Structure in DBMS
11. Storage and File Structure in DBMS11. Storage and File Structure in DBMS
11. Storage and File Structure in DBMS
koolkampus
 
Distributed Systems
Distributed SystemsDistributed Systems
Distributed Systems
Rupsee
 

Tendances (20)

Introduction to Distributed System
Introduction to Distributed SystemIntroduction to Distributed System
Introduction to Distributed System
 
introduction to NOSQL Database
introduction to NOSQL Databaseintroduction to NOSQL Database
introduction to NOSQL Database
 
Denormalization
DenormalizationDenormalization
Denormalization
 
Challenges of Conventional Systems.pptx
Challenges of Conventional Systems.pptxChallenges of Conventional Systems.pptx
Challenges of Conventional Systems.pptx
 
Object Relational Database Management System(ORDBMS)
Object Relational Database Management System(ORDBMS)Object Relational Database Management System(ORDBMS)
Object Relational Database Management System(ORDBMS)
 
Distributed database
Distributed databaseDistributed database
Distributed database
 
NoSql
NoSqlNoSql
NoSql
 
Distributed file system
Distributed file systemDistributed file system
Distributed file system
 
Object Oriented Database Management System
Object Oriented Database Management SystemObject Oriented Database Management System
Object Oriented Database Management System
 
Distributed DBMS - Unit 3 - Distributed DBMS Architecture
Distributed DBMS - Unit 3 - Distributed DBMS ArchitectureDistributed DBMS - Unit 3 - Distributed DBMS Architecture
Distributed DBMS - Unit 3 - Distributed DBMS Architecture
 
Distributed dbms architectures
Distributed dbms architecturesDistributed dbms architectures
Distributed dbms architectures
 
Implementation Issue with ORDBMS
Implementation Issue with ORDBMSImplementation Issue with ORDBMS
Implementation Issue with ORDBMS
 
Nosql databases
Nosql databasesNosql databases
Nosql databases
 
Introduction to Oracle Database
Introduction to Oracle DatabaseIntroduction to Oracle Database
Introduction to Oracle Database
 
11. Storage and File Structure in DBMS
11. Storage and File Structure in DBMS11. Storage and File Structure in DBMS
11. Storage and File Structure in DBMS
 
Distributed Systems
Distributed SystemsDistributed Systems
Distributed Systems
 
Object oriented database concepts
Object oriented database conceptsObject oriented database concepts
Object oriented database concepts
 
DISTRIBUTED DATABASE WITH RECOVERY TECHNIQUES
DISTRIBUTED DATABASE WITH RECOVERY TECHNIQUESDISTRIBUTED DATABASE WITH RECOVERY TECHNIQUES
DISTRIBUTED DATABASE WITH RECOVERY TECHNIQUES
 
Types of Database Models
Types of Database ModelsTypes of Database Models
Types of Database Models
 
Data Mining: Mining ,associations, and correlations
Data Mining: Mining ,associations, and correlationsData Mining: Mining ,associations, and correlations
Data Mining: Mining ,associations, and correlations
 

Similaire à Distributed Database

Chapter-6 Distribute Database system (3).ppt
Chapter-6 Distribute Database system (3).pptChapter-6 Distribute Database system (3).ppt
Chapter-6 Distribute Database system (3).ppt
latigudata
 
Distributed databases
Distributed databasesDistributed databases
Distributed databases
Suneel Dogra
 
AdvanceDatabaseChapter6Advance Dtabases.pptx
AdvanceDatabaseChapter6Advance Dtabases.pptxAdvanceDatabaseChapter6Advance Dtabases.pptx
AdvanceDatabaseChapter6Advance Dtabases.pptx
XanGwaps
 

Similaire à Distributed Database (20)

Distributed database
Distributed databaseDistributed database
Distributed database
 
DDBMS.pptx
DDBMS.pptxDDBMS.pptx
DDBMS.pptx
 
lecture-13.pptx
lecture-13.pptxlecture-13.pptx
lecture-13.pptx
 
nnnn.pptx
nnnn.pptxnnnn.pptx
nnnn.pptx
 
DBMS.pptx
DBMS.pptxDBMS.pptx
DBMS.pptx
 
Chapter-6 Distribute Database system (3).ppt
Chapter-6 Distribute Database system (3).pptChapter-6 Distribute Database system (3).ppt
Chapter-6 Distribute Database system (3).ppt
 
Distribution transparency and Distributed transaction
Distribution transparency and Distributed transactionDistribution transparency and Distributed transaction
Distribution transparency and Distributed transaction
 
Santosh Kumar Meher(2105040008) DISTRIBUTED DATABASE.pptx
Santosh Kumar Meher(2105040008) DISTRIBUTED DATABASE.pptxSantosh Kumar Meher(2105040008) DISTRIBUTED DATABASE.pptx
Santosh Kumar Meher(2105040008) DISTRIBUTED DATABASE.pptx
 
Distributed D B
Distributed  D BDistributed  D B
Distributed D B
 
Distributed databases
Distributed databasesDistributed databases
Distributed databases
 
AdvanceDatabaseChapter6Advance Dtabases.pptx
AdvanceDatabaseChapter6Advance Dtabases.pptxAdvanceDatabaseChapter6Advance Dtabases.pptx
AdvanceDatabaseChapter6Advance Dtabases.pptx
 
1 ddbms jan 2011_u
1 ddbms jan 2011_u1 ddbms jan 2011_u
1 ddbms jan 2011_u
 
Distributed dbms (ddbms)
Distributed dbms (ddbms)Distributed dbms (ddbms)
Distributed dbms (ddbms)
 
INJRV01I10005.pdf
INJRV01I10005.pdfINJRV01I10005.pdf
INJRV01I10005.pdf
 
Distributed Database Management System.pptx
Distributed Database Management System.pptxDistributed Database Management System.pptx
Distributed Database Management System.pptx
 
ditributed databases
ditributed databasesditributed databases
ditributed databases
 
Unit-1 Introduction to Big Data.pptx
Unit-1 Introduction to Big Data.pptxUnit-1 Introduction to Big Data.pptx
Unit-1 Introduction to Big Data.pptx
 
Advance DBMS
Advance DBMSAdvance DBMS
Advance DBMS
 
Dos unit3
Dos unit3Dos unit3
Dos unit3
 
An Overview of Security in Distributed Database Management System
An Overview of Security in Distributed Database Management SystemAn Overview of Security in Distributed Database Management System
An Overview of Security in Distributed Database Management System
 

Plus de Amity University | FMS - DU | IMT | Stratford University | KKMI International Institute | AIMA | DTU

All About DBMS - Interview Question and Answers
All About DBMS - Interview Question and AnswersAll About DBMS - Interview Question and Answers

Plus de Amity University | FMS - DU | IMT | Stratford University | KKMI International Institute | AIMA | DTU (20)

All About DBMS - Interview Question and Answers
All About DBMS - Interview Question and AnswersAll About DBMS - Interview Question and Answers
All About DBMS - Interview Question and Answers
 
Concept of Governance - Management of Operational Risk for IT Officers/Execut...
Concept of Governance - Management of Operational Risk for IT Officers/Execut...Concept of Governance - Management of Operational Risk for IT Officers/Execut...
Concept of Governance - Management of Operational Risk for IT Officers/Execut...
 
Emerging Technologies in IT
Emerging Technologies in ITEmerging Technologies in IT
Emerging Technologies in IT
 
Introduction to DBMS - Notes in Layman...
Introduction to DBMS - Notes in Layman...Introduction to DBMS - Notes in Layman...
Introduction to DBMS - Notes in Layman...
 
Fundamentals of DBMS
Fundamentals of DBMSFundamentals of DBMS
Fundamentals of DBMS
 
CASE (Computer Aided Software Design)
CASE (Computer Aided Software Design)CASE (Computer Aided Software Design)
CASE (Computer Aided Software Design)
 
SOFTWARE RELIABILITY AND QUALITY ASSURANCE
SOFTWARE RELIABILITY AND QUALITY ASSURANCESOFTWARE RELIABILITY AND QUALITY ASSURANCE
SOFTWARE RELIABILITY AND QUALITY ASSURANCE
 
Software Testing (Contd..) SDLC Model
Software Testing (Contd..) SDLC ModelSoftware Testing (Contd..) SDLC Model
Software Testing (Contd..) SDLC Model
 
Software Testing - SDLC Model
Software Testing - SDLC ModelSoftware Testing - SDLC Model
Software Testing - SDLC Model
 
Coding - SDLC Model
Coding - SDLC ModelCoding - SDLC Model
Coding - SDLC Model
 
Software Design - SDLC Model
Software Design - SDLC ModelSoftware Design - SDLC Model
Software Design - SDLC Model
 
Models of SDLC (Contd..) & Feasibility Study
Models of SDLC (Contd..)  & Feasibility StudyModels of SDLC (Contd..)  & Feasibility Study
Models of SDLC (Contd..) & Feasibility Study
 
Models of SDLC (Software Development Life Cycle / Program Development Life Cy...
Models of SDLC (Software Development Life Cycle / Program Development Life Cy...Models of SDLC (Software Development Life Cycle / Program Development Life Cy...
Models of SDLC (Software Development Life Cycle / Program Development Life Cy...
 
Introduction to Software Engineering
Introduction to Software EngineeringIntroduction to Software Engineering
Introduction to Software Engineering
 
CLOUD SECURITY IN INSURANCE INDUSTRY WITH RESPECT TO INDIAN MARKET
CLOUD SECURITY IN INSURANCE INDUSTRY WITH RESPECT TO INDIAN MARKETCLOUD SECURITY IN INSURANCE INDUSTRY WITH RESPECT TO INDIAN MARKET
CLOUD SECURITY IN INSURANCE INDUSTRY WITH RESPECT TO INDIAN MARKET
 
Application Software
Application SoftwareApplication Software
Application Software
 
Application Software – Horizontal & Vertical Software
Application Software – Horizontal & Vertical SoftwareApplication Software – Horizontal & Vertical Software
Application Software – Horizontal & Vertical Software
 
Software: Systems and Application Software
Software:  Systems and Application SoftwareSoftware:  Systems and Application Software
Software: Systems and Application Software
 
Programming Languages
Programming LanguagesProgramming Languages
Programming Languages
 
Number Codes and Registers
Number Codes and RegistersNumber Codes and Registers
Number Codes and Registers
 

Dernier

Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
kauryashika82
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
fonyou31
 

Dernier (20)

Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
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
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
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
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
 
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpin
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writing
 
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
 

Distributed Database

  • 2. Database Logical interrelated collection of shared data, along with description of data, physically distributed over a computer network.
  • 3. What is Distributed Database? •A distributed database (DDB) is a collection of multiple, logically interrelated databases distributed over a computer network. • A distributed database management system (DDBMS) is the software that manages the DDB and provides an access mechanism that makes this distribution transparent to the users
  • 4.
  • 5. Characteristics All sites are interconnected. Fragments can be replicated. Logically related shared data can becollected. Data at each and every site is controlled by the DBMS. Each Distributed Database Management System takes part in at least one global application.
  • 6. Functionality 1. Security 2. Keeping track of data 3. Replicated data management 4. System catalog management 5. Distributed transaction management 6. Distributed database recovery
  • 7. A DDBMSmainly classified into two types: ◦1. Homogeneous Distributed database management systems ◦2. Heterogeneous Distributed database management systems
  • 8. Homogeneous DDBMS 1. In a homogeneous distributed database all sites have identical software and are aware of each other and agree to cooperate in processing user requests. 2. The homogeneous system is much easier to design and manage. 3. The operating system used, at each location must be same or compatible. 4. The database application (or DBMS) used at each location must be same or compatible.
  • 9. Heterogeneous DDBMS 1. In a heterogeneous distributed database different sites may use different schema and software. 2. In heterogeneous systems, different nodes may have different hardware & software and data structures at various nodes or locations are also incompatible. 3. Different computers and operating systems, database applications or data models may be used at each of the locations. 4. On heterogeneous system, translations are required to allow communication between different sites (or DBMS). 5. The heterogeneous system is often not technically or economically feasible. In this system, a user at one location may be able to read but not update the data at another location.
  • 10. Advantages 1. Less danger of a single-point failure. When one of the computers fails, the workload is picked up by other workstations. 2. Data are also distributed at multiple sites. 3. The end user is able to access any available copy of the data, and an end user's request is processed by any processor at the data location. 4. Improved communications. Because local sites are smaller and located closer to customers. 5. Reduced operating costs. It is more cost- effective to add workstations to a network than to update a mainframe system. 6. Faster data access, faster data processing. 7. A distributed database system spreads out the systems workload by processing data at several sites.
  • 11. Disadvantages 1. Complexity of management and control. 2. Applications must recognize data location, and they must be able to stitch together data from various sites. 3. Security. 4. Increased storage and infrastructure requirements. 5. Multiple copies of data has to be at different sites, thus an additional disk storage space will be required. 6. The probability of security lapses increases when data are located at multiple sites.
  • 12. What is Parallel database...?? 1. A parallel database system is to improve performance through parallelization of various operations, such as loading data, building indexes and evaluating queries. 2. The distribution is solely done on the bases of performance. 3. Parallel databases improve processing and input/output speeds by using multiple CPUs and disks in parallel. 4. Many operations are performed simultaneously 5. Data may be stored in a distributed fashion.
  • 13. Database and Parallel Database Characteristics ParallelDatabase Distributed database Definition It is a software system where multiple processors or machinesare used to execute and run queries in parallel. It is a software system that manages multiple logically interrelated databases distributed over a computer network. Geographical Location The nodes are locatedat geographically same location. The nodes are usually located at geographically different locations. Execution Speed Quicker Slower Overhead Less More
  • 14. Nodetypes Compulsorily Homogeneous Need not be homogeneous Performance Lower reliability & availability. Higher reliability & availability. Scopeof Expansion Difficult to expand Easier to expand Backup Backup at one site only Backup at multiple sites Consistency Maintaining consistency is easier Maintaining consistency is difficult.
  • 15. Data fragmentation 1. Fragmentation is a process of division or the mapping of the tables based on the columns and rows of data into the smallest unit of data. 2. Data that has broken down is still possible to be combined again with the intention to complete the data collection using fragmentation. 3. Fragmentation is a database server feature that allows you to control where data is stored at the table level. 4. Fragmentation enables you to define groups of rows or index keys within a table.
  • 16. Replication Replication is that we store severalcopies of a relation or relation fragment. An entire relation can be replicated at one or more sites. Similarly, one or more fragments of a relation can be replicated at othersites. For example, if a relation R is fragmented into R1,R2, and R3, there might be just one copy of R1, whereas R2 is replicated at two other sites and R3 is replicated at all sites.
  • 17. Two Fold Replication The motivation for replication is twofold: 1. Increased Availability of Data:Ifa site that contains a replica goes down, wecan find the same data at other sites. Similarly, if local copies of remote relations are available, we are less vulnerable to failure of communication links. 2. Faster Query Evaluation: Queries can execute faster by using a local copy of a relation instead of going to a remotesite.
  • 18. Distributed Transaction In a distributed DBMS, a given transaction is submitted at some one site, but it can access data at other sites as well. When a transaction is submitted at some site, the transaction manager at that site breaks it up into a collection of one or more sub-transactions that execute at different sites, submits them to transaction managers at the other sites, and coordinates their activity. Distributed Concurrency Control: How can locks for objects stored across several sites be managed? Distributed Recovery: Transaction atomicity must be ensured when a transaction commits, all its actions, across all the sites at which it executes, must persist. Similarly, when a transaction aborts, none of its actions must be allowed to persist.
  • 19. Distributed Concurrency Control • The choice of technique determines which objects are to be locked. When locks are obtained and released is determined by the concurrency control protocol. We now consider how lock and unlock requests are implemented in a distributed environment. Lock management can be distributed across sites in many ways:
  • 20. Centralized : A single site is in charge of handling lock and unlock requests for all objects. Primary Copy: One copy of each object is designated the primary copy. All requests to lock or unlock a copy of this object are handled by the lock manager at the site where the primary copy is stored, regardless of where the copy itself is stored. Fully Distributed : Requests to lock or unlock a copy of an object stored at a site are handled by the lock manager at the site where the copy is stored.
  • 21. DISTRIBUTED RECOVERY Recovery in a distributed DBMS is more complicated than in a centralized DBMS for the following reasons: ◦ New kinds of failure can arise : Failure of communication links and failure of a remote site at which a sub-transaction is executing. ◦ Either all sub-transactions of a given transaction must commit or none must commit, and this property must be guaranteed despite any combination of site and link failures. This guarantee is achieved using a commit protocol.
  • 22. Concepts Of Locks A lock is used when multiple users need to access a database concurrently. This prevents data from being corrupted or invalidated when multiple users try to write to the database. Any single user can only modify those database records (that is, items in the database) to which they have applied a lock that gives them exclusive access to the record until the lock is released. Locking not only provides exclusivity to write but also prevents (or controls) reading of unfinished modifications.