exam questions

Exam 70-462 All Questions

View all questions & answers for the 70-462 exam

Exam 70-462 topic 2 question 203 discussion

Actual exam question from Microsoft's 70-462
Question #: 203
Topic #: 2
[All 70-462 Questions]

You administer a Microsoft SQL Server environment. One of the SQL Server instances contains a database named Contoso.
You plan to migrate Contoso to Microsoft Azure SQL Database.
To do so, you need to implement a contained database.
Which two actions should you perform? Each correct answer presents part of the solution.

  • A. Set database containment to CONTAINED.
  • B. Enable database property contained database authentication.
  • C. Set database containment to PARTIAL.
  • D. Set database containment to CLOUD.
  • E. Enable server property contained database authentication.
  • F. Enable database property encryption enabled.
Show Suggested Answer Hide Answer
Suggested Answer: BC 🗳️
Contained database authentication is defined on the database, not on the server.
A database is converted to a contained database by changing the CONTAINMENT option to partial.
References:
https://docs.microsoft.com/en-us/sql/relational-databases/databases/migrate-to-a-partially-contained-database

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
Deju
4 years, 9 months ago
The correct answer should be CE; NOT BC Contained databases must be enabled on the instance of the SQL Server Database Engine before contained databases can be created. Enabling Contained Databases Using Transact-SQL The following example enables contained databases on the instance of the SQL Server Database Engine. SQL Copy sp_configure 'contained database authentication', 1; GO RECONFIGURE ; GO Enabling Contained Databases Using Management Studio The following example enables contained databases on the instance of the SQL Server Database Engine. In Object Explorer, right-click the server name, and then click Properties. On the Advanced page, in the Containment section, set the Enable Contained Databases option to True. Click OK.
upvoted 1 times
...
RGataullin
5 years, 2 months ago
It is not a database property. It is an instance property. Shouldn't the answer be EC? https://docs.microsoft.com/en-us/sql/relational-databases/databases/migrate-to-a-partially-contained-database?view=sql-server-ver15
upvoted 2 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 ...