Lecture 6 -Distributed databases
Lecture 6 -Distributed databases
Distributed DBMS
Software system that permits the management
of the distributed database and makes the
distribution transparent to users.
10/20/2022 6
Distributed Processing
A centralized database that can be accessed
over a computer network.
Partitioned
Database partitioned into disjoint fragments,
each fragment assigned to one site.
Selective Replication
Combination of partitioning, replication, and
centralization.
• Performance Transparency
– DBMS Transparency
• DBMS Transparency
SELECT p.propNo
FROM Property p INNER JOIN
(Client c INNER JOIN Viewing v ON c.clientNo = v.clientNo)
ON p.propNo = v.propNo
WHERE p.city=‘Aberdeen’ AND c.maxPrice > 200000;