nerdexam
Microsoft

70-465 · Question #48

You need to recommend a solution to synchronize Database2 to App1_Db1. What should you recommend?

The correct answer is D. Transactional replication. To continuously synchronize data from one SQL Server database to another, Transactional replication is the appropriate solution as it propagates incremental data changes in near real-time.

Submitted by jakub_pl· Mar 5, 2026Design and implement database solutions for SQL Server

Question

You need to recommend a solution to synchronize Database2 to App1_Db1. What should you recommend?

Options

  • AChange data capture
  • BSnapshot replication
  • CMaster Data Services
  • DTransactional replication

How the community answered

(58 responses)
  • A
    5% (3)
  • B
    14% (8)
  • C
    3% (2)
  • D
    78% (45)

Why each option

To continuously synchronize data from one SQL Server database to another, Transactional replication is the appropriate solution as it propagates incremental data changes in near real-time.

AChange data capture

Change Data Capture (CDC) is a SQL Server feature that tracks and records data changes in a change table for auditing or ETL purposes, but it does not natively replicate or synchronize those changes to another database on its own.

BSnapshot replication

Snapshot replication copies and delivers a full snapshot of the entire database at scheduled intervals rather than continuously propagating incremental changes, making it inefficient and disruptive for ongoing synchronization scenarios.

CMaster Data Services

Master Data Services (MDS) is a data governance and master data management tool used to manage authoritative master data entities and their hierarchies, not a replication or database synchronization technology.

DTransactional replicationCorrect

Transactional replication continuously captures changes (inserts, updates, deletes) from a publisher database and delivers them to a subscriber database, making it ideal for keeping Database2 synchronized with App1_Db1. It uses the Log Reader Agent to read the transaction log and the Distribution Agent to apply changes to the subscriber, ensuring near real-time data consistency between the two databases.

Concept tested: SQL Server transactional replication for database synchronization

Source: https://learn.microsoft.com/en-us/sql/relational-databases/replication/transactional/transactional-replication

Topics

#Transactional replication#Data synchronization#Replication

Community Discussion

No community discussion yet for this question.

Full 70-465 Practice