Bird
0
0

Which of the following best describes a key feature of logical replication in PostgreSQL?

easy📝 Conceptual Q1 of 15
PostgreSQL - Advanced Features
Which of the following best describes a key feature of logical replication in PostgreSQL?
AIt allows selective replication of specific tables or data changes.
BIt replicates the entire database cluster including system catalogs.
CIt only supports physical replication at the block level.
DIt requires identical hardware on publisher and subscriber.
Step-by-Step Solution
Solution:
  1. Step 1: Understand logical replication scope

    Logical replication allows replicating changes at the table level, not the entire cluster.
  2. Step 2: Compare options

    It allows selective replication of specific tables or data changes. correctly states selective replication of tables or changes. It replicates the entire database cluster including system catalogs. is incorrect as logical replication does not replicate system catalogs. It only supports physical replication at the block level. describes physical replication, not logical. It requires identical hardware on publisher and subscriber. is false; hardware need not be identical.
  3. Final Answer:

    It allows selective replication of specific tables or data changes. -> Option A
  4. Quick Check:

    Logical replication = selective table/data replication [OK]
Quick Trick: Logical replication replicates specific tables, not entire cluster [OK]
Common Mistakes:
  • Confusing logical replication with physical replication
  • Assuming system catalogs are replicated
  • Believing hardware must match exactly

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More PostgreSQL Quizzes