nerdexam
Microsoft

70-465 · Question #30

You have two SQL Server instances named SQLDev and SQLProd that have access to various storage media. You plan to synchronize SQLDev and SQLProd. You need to recommend a solution that meets the…

The correct answer is B. A data-tier application. The question asks for a package-based deployment solution that synchronizes schemas between SQL Server instances and supports SQL Azure. A data-tier application (DAC) is the only option that meets all three requirements.

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

Question

You have two SQL Server instances named SQLDev and SQLProd that have access to various storage media. You plan to synchronize SQLDev and SQLProd. You need to recommend a solution that meets the following requirements: - The database schemas must be synchronized from SQLDev to SQLProd. - The database on SQLDev must be deployed to SQLProd by using a package. - The package must support being deployed to SQL Azure. What should you recommend? More than one answer choice may achieve the goal. Select the BEST answer.

Options

  • AA database snapshot
  • BA data-tier application
  • CChange data capture
  • DSQL Server Integration Services (SSIS)

How the community answered

(62 responses)
  • A
    10% (6)
  • B
    82% (51)
  • C
    5% (3)
  • D
    3% (2)

Why each option

The question asks for a package-based deployment solution that synchronizes schemas between SQL Server instances and supports SQL Azure. A data-tier application (DAC) is the only option that meets all three requirements.

AA database snapshot

A database snapshot creates a read-only, point-in-time static copy of a database on the same SQL Server instance and cannot be used as a portable deployment package or deployed to SQL Azure.

BA data-tier applicationCorrect

A data-tier application (DAC) is a self-contained deployment unit packaged as a .dacpac file that captures all database schemas and objects. It can be extracted from SQLDev and deployed to SQLProd or SQL Azure using SQL Server Management Studio, sqlpackage.exe, or Azure tooling, directly satisfying all three requirements: schema sync, package-based deployment, and SQL Azure compatibility.

CChange data capture

Change data capture (CDC) tracks DML changes to table data for auditing and incremental data loads, but it does not synchronize schemas or produce a deployable package compatible with SQL Azure.

DSQL Server Integration Services (SSIS)

SQL Server Integration Services (SSIS) is an ETL platform for moving and transforming data, and while it can transfer data between instances, it does not natively package and deploy database schemas, and SSIS packages are not directly deployable to SQL Azure as a database deployment mechanism.

Concept tested: Data-tier application DAC package deployment to SQL Azure

Source: https://learn.microsoft.com/en-us/sql/relational-databases/data-tier-applications/data-tier-applications

Topics

#data-tier applications#DAC Pac#schema synchronization#database deployment

Community Discussion

No community discussion yet for this question.

Full 70-465 Practice