Types of Distributed DBMS Last Updated : 23 Jul, 2025 Comments Improve Suggest changes Like Article Like Report A system that is used for managing the storage and retrieval of data across multiple interconnected databases is called a Distributed Database Management System(DDBMS). In this case, the interconnected databases are situated in different geographical areas. In DDBMS, one can access and store data transparently from different geographical locations and ensure high availability, scalability, and fault tolerance mechanisms. DDBMSs are designed to handle huge amounts of data spread across different sites. It can give seamless performance in data sharing and collaboration by organizations. Features of Distributed DBMSThere is a presence of a certain number of features that make DDBMS very popular in organizing data. Data Fragmentation: The overall database system is divided into smaller subsets which are fragmentations. This fragmentation can be three types horizontal (divided by rows depending upon conditions), vertical (divided by columns depending upon conditions), and hybrid (horizontal + vertical).Data Replication: DDBMS maintains and stores multiple copies of the same data in its different fragments to ensure data availability, fault tolerance, and seamless performance.Data Allocation: It determines if all data fragments are required to be stored in all sites or not. This feature is used to reduce network traffic and optimize the performance.Data Transparency: DDBMS hides all the complexities from its users and provides transparent access to data and applications to users.Types of Distributed DBMSThere are 6 types of DDBMS present there which are discussed below: Homogeneous: In this type of DDBMS, all the participating sites should have the exact same DBMS software and architecture which makes all underlying systems consistent across all sites. It provides simplified data sharing and integration.Heterogeneous: In this type of DDBMS, the participating sites can be from multiple sites and use different DBMS software, data models, or architectures. This model faces little integration problem as all site's data representation and query language can be different from each other.Federated: Here, the local databases are maintained by individual sites or federations. These local databases are connected via a middleware system that allows users to access and query data from multiple distributed databases. The federation combines different local databases but maintains autonomy at the local level.Replicated: In this type, the DDBMS maintains multiple copies of the same data fragment across different sites. It is used to ensure data availability, fault tolerance, and seamless performance. Users can access any data from the nearest replica if the root is down for some reason. However, it is required to perform high-end synchronization of data changes in replication.Partitioned: In a Partitioned DDBMS, the overall database is divided into distinct partitions, and each partition is assigned to a specific site. Partitioning can be done depending on specific conditions like date range, geographic location, and functional modules. Each site controls its own partition and the data from other partitions should be accessed through communication and coordination between sites.Hybrid: It is just a combination of multiple other five types of DDBMS which are discussed above. The combination is done to address specific requirements and challenges of complex distributed environments. Hybrid DDBMS provides more optimized performance and high scalability. Comment More info S susmit_sekhar_bhakta Follow Improve Article Tags : DBMS Distributed System Explore Basics of DBMSIntroduction of DBMS (Database Management System)6 min readHistory of DBMS7 min readDBMS Architecture 1-level, 2-Level, 3-Level6 min readDifference between File System and DBMS6 min readER & Relational ModelIntroduction of ER Model10 min readStructural Constraints of Relationships in ER Model5 min readGeneralization, Specialization and Aggregation in ER Model4 min readIntroduction of Relational Model and Codd Rules in DBMS14 min readKeys in Relational Model6 min readMapping from ER Model to Relational Model7 min readStrategies for Schema design in DBMS6 min readRelational AlgebraIntroduction of Relational Algebra in DBMS9 min readSQL Joins (Inner, Left, Right and Full Join)4 min readJoin operation Vs Nested query in DBMS3 min readTuple Relational Calculus (TRC) in DBMS4 min readDomain Relational Calculus in DBMS4 min readFunctional Dependencies & NormalisationAttribute Closure in DBMS4 min readArmstrong's Axioms in Functional Dependency in DBMS4 min readCanonical Cover of Functional Dependencies in DBMS7 min readNormal Forms in DBMS5 min readThe Problem of Redundancy in Database6 min readLossless Join and Dependency Preserving Decomposition4 min readDenormalization in Databases4 min readTransactions & Concurrency ControlACID Properties in DBMS5 min readTypes of Schedules in DBMS6 min readConcurrency Control in DBMS7 min readGraph Based Concurrency Control Protocol in DBMS4 min readMultiple Granularity Locking in DBMS3 min readDatabase Recovery Techniques in DBMS4 min readDeadlock in DBMS4 min readAdvanced DBMSIndexing in Databases6 min readIntroduction of B Tree8 min readIntroduction of B+ Tree5 min readBitmap Indexing in DBMS3 min readInverted Index7 min readSQL Queries on Clustered and Non-Clustered Indexes7 min readFile Organization in DBMS4 min readPractice QuestionsLast Minute Notes - DBMS15+ min readTop 60 DBMS Interview Questions with Answers for 202515+ min readCommonly asked DBMS Interview Questions | Set 25 min readDatabase Management System - GATE CSE Previous Year Questions2 min read Like