exam questions

Exam AZ-400 All Questions

View all questions & answers for the AZ-400 exam

Exam AZ-400 topic 8 question 36 discussion

Actual exam question from Microsoft's AZ-400
Question #: 36
Topic #: 8
[All AZ-400 Questions]

You have an Azure DevOps project named Project1 and an Azure subscription named Sub1. Sub1 contains an Azure SQL database named DB1.
You need to create a release pipeline that uses the Azure SQL Database Deployment task to update DB1.
Which artifact should you deploy?

  • A. a BACPAC
  • B. a DACPAC
  • C. an LDF file
  • D. an MDF file
Show Suggested Answer Hide Answer
Suggested Answer: B 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
zalyoung
Highly Voted 4 years, 11 months ago
Correct DACPAC and BACPAC are similar but they target different scenarios. A DACPAC is focused on capturing and deploying schema, including upgrading an existing database. The primary use case for a DACPAC is to deploy a tightly defined schema to development, test, and then to production environments. And also the reverse: capturing production's schema and applying it back to test and development environments. A BACPAC, on the other hand, is focused on capturing schema and data supporting two main operations: EXPORT- The user can export the schema and the data of a database to a BACPAC. IMPORT - The user can import the schema and the data into a new database in the host server.
upvoted 49 times
...
Def21
Highly Voted 2 years, 9 months ago
Just fyi: PAC = package DAC = "Data-tier applications" BAC = Not sure, maybe "backup" DACPAC = schemas + other SQL objects BACPAC = DACPAC + data
upvoted 13 times
...
husam421
Most Recent 11 months, 1 week ago
https://learn.microsoft.com/en-us/azure/devops/pipelines/targets/azure-sqldb?view=azure-devops&tabs=yaml
upvoted 1 times
...
yana_b
1 year, 8 months ago
Selected Answer: C
DACPAC
upvoted 1 times
...
tempacc4nk
1 year, 9 months ago
Selected Answer: B
correct - DACPAC
upvoted 1 times
...
coffecold
2 years, 6 months ago
"update DB1": DACPAC is accepted answer here, but why should 'updating' not include the data in this question ?
upvoted 1 times
...
syu31svc
2 years, 10 months ago
Selected Answer: B
https://docs.microsoft.com/en-us/sql/relational-databases/data-tier-applications/data-tier-applications?view=sql-server-ver16 "The .dacpac can be used to update a database" Answer is B
upvoted 1 times
...
Eltooth
3 years ago
Selected Answer: B
B is correct answer.
upvoted 1 times
...
rdemontis
3 years, 2 months ago
Selected Answer: B
correct https://docs.microsoft.com/en-us/azure/devops/pipelines/tasks/deploy/sql-azure-dacpac-deployment?view=azure-devops
upvoted 1 times
...
Optimist_Indian
3 years, 4 months ago
Got this question in Feb-2022 exam (scored 910+). Given answer is correct. DACPAC.
upvoted 2 times
...
Azurite
3 years, 10 months ago
The answer is correct. To create a release pipeline that uses the Azure SQL Database Deployment task to update DB1, database administrators can package SQL Server objects into a portable artifact called a data-tier application (DAC) package, also known as a DACPAC.
upvoted 2 times
...
andi7890
5 years ago
The task can use both dacpac and backbac, but the question is to update database, so I guess we need to provide dacpac, to update dtabase schema. Also take a look at the learning: https://docs.microsoft.com/en-us/learn/modules/manage-database-changes-in-azure-pipelines/6-deploy-pipeline
upvoted 5 times
...
kcinofni
5 years, 1 month ago
https://docs.microsoft.com/en-us/sql/relational-databases/data-tier-applications/data-tier-applications?view=sql-server-ver15#bacpac
upvoted 4 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...