exam questions

Exam DP-300 All Questions

View all questions & answers for the DP-300 exam

Exam DP-300 topic 3 question 36 discussion

Actual exam question from Microsoft's DP-300
Question #: 36
Topic #: 3
[All DP-300 Questions]

HOTSPOT
-

You need to use an Azure Resource Manager (ARM) template to deploy an Azure virtual machine that will host a Microsoft SQL Server instance. The solution must maximize disk I/O performance for the SQL Server database and log files.

How should you complete the template? To answer, select the appropriate options in the answer area.

NOTE: Each correct selection is worth one point.

Show Suggested Answer Hide Answer
Suggested Answer:

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
licna
Highly Voted 2 years, 3 months ago
I think it should be opposite, i.e. Read-Only and None. See https://learn.microsoft.com/en-us/azure/azure-sql/virtual-machines/windows/performance-guidelines-best-practices-storage?view=azuresql#caching We need to set 'Read-Only' caching for data disks and 'None' for the log disk. There is a loop (copy) in the ARM template, it evaluates whether current disk ID is greater than sum of data disks. If yes then it's the log disk, so assign None, otherwise the value in the variable (i.e. Read-Only). Similar example is here: https://learn.microsoft.com/en-us/azure/azure-sql/virtual-machines/windows/create-sql-vm-resource-manager-template
upvoted 25 times
MrDuck
2 years, 1 month ago
licna is correct
upvoted 3 times
...
...
bingomutant
Most Recent 7 months ago
Select ReadOnly caching. This is because SQL Server frequently reads from the data disks but doesn't perform as many writes, so ReadOnly caching maximizes read performance while keeping write operations off the cache. For log disks: Select None for caching. SQL Server log writes are sequential and write-heavy. Disk caching can interfere with the efficient, sequential logging, so you should disable caching to ensure the best performance for log writes.
upvoted 1 times
...
Dalamain
1 year ago
Answers are the other way around as licna suggested. Look at the IF statement for the caching property in the “COPY” section… it reads “If the current disk being created is of a higher index than the number of data disks count, use “log cache value”, otherwise default to caching variable (for data files).
upvoted 2 times
...
KIET2131
2 years, 2 months ago
None ReadOnly
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 ...
exam
Someone Bought Contributor Access for:
SY0-701
London, 1 minute ago