The answer is that the user will be denied the ability to read data from the database. This occurs because the Azure RBAC deny condition explicitly blocks read access to 'proddb', and in Azure RBAC, a deny assignment takes precedence over any allow assignments, effectively overriding broader permissions the user might hold. On the Microsoft Azure Database Administrator Associate DP-300 exam, this scenario tests your understanding of how conditional deny rules in role assignments can create granular security boundaries, even against inherited or direct read roles. A common trap is assuming that a user with a Contributor or Reader role can bypass a deny condition, but the key is that deny always wins in RBAC evaluation. Remember the memory tip: "Deny overrides all, even if the role is tall."
DP-300 Implement a secure environment Practice Question
This DP-300 practice question tests your understanding of implement a secure environment. Match the stated requirement to the specific cloud service, access model, or configuration option — many options are valid in isolation but not for this scenario. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
Exhibit
Refer to the exhibit.
```json
{
"role": "Azure SQL Database Contributor",
"scope": "/subscriptions/12345/resourceGroups/ProdRG/providers/Microsoft.Sql/servers/prodserver/databases/proddb",
"assignee": "user@contoso.com",
"condition": "((!(ActionMatches{'Microsoft.Sql/servers/databases/read'})) OR (@Request[Microsoft.Sql/servers/databases/read:DataAction] NotExists))",
"conditionVersion": "2.0"
}
```
Refer to the exhibit. The exhibit shows an Azure role assignment with a condition. When user@contoso.com tries to read data from the database 'proddb', what will be the effect of this condition?
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
The user will be denied the ability to read data from the database.
The condition in the Azure role assignment explicitly denies read access to the database 'proddb' for user@contoso.com. In Azure RBAC, a deny assignment overrides any allow assignments, so even if the user has other roles granting read permissions, this condition will block all data read operations on that specific database. Therefore, the user will be denied the ability to read data from the database.
Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
✗
The user will be allowed to read all data from the database.
Why it's wrong here
The condition actually denies read data actions, not allows them.
✓
The user will be denied the ability to read data from the database.
Why this is correct
The condition denies read data actions because it excludes the data read action from the role.
Related concept
Read the scenario before looking for a memorised answer.
✗
The user will be able to read the database metadata but not the data.
Why it's wrong here
The condition affects data read, not metadata read.
✗
The user will be able to assign the role to others.
Why it's wrong here
The condition does not affect role assignment permissions.
Common exam traps
Common exam trap: answer the scenario, not the keyword
The trap here is that candidates often assume a condition only restricts certain operations or that metadata reads are separate from data reads, but Azure RBAC deny assignments unconditionally block the specified action, and 'read data' encompasses all data retrieval operations on the database.
Detailed technical explanation
How to think about this question
Azure RBAC uses deny assignments that are evaluated before allow assignments, and a single deny condition on the data action 'Microsoft.Sql/servers/databases/read' will block all read operations on that database, including SELECT queries. This is enforced at the Azure resource manager layer, not at the SQL engine level, meaning the user cannot even connect to the database if the deny applies to the connection action. In real-world scenarios, such conditions are used to enforce least privilege for sensitive databases while still allowing other administrative actions.
KKey Concepts to Remember
Read the scenario before looking for a memorised answer.
Find the constraint that changes the correct option.
Eliminate answers that are true in general but not in this case.
TExam Day Tips
→Watch for words such as best, first, most likely and least administrative effort.
→Review why wrong options are wrong, not only why the correct option is correct.
Key takeaway
Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Real-world example
How this comes up in practice
A company's IT admin needs to give a contractor read-only access to production logs without sharing account credentials. Using role-based access control (RBAC) and temporary scoped permissions — not a permanent shared password — is the correct pattern. Questions like this test whether you can apply least-privilege access across cloud identity services.
Related glossary terms
Concepts from this question explained
These glossary pages explain the core terms tested in this DP-300 question in full detail.
Implement a secure environment — This question tests Implement a secure environment — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: The user will be denied the ability to read data from the database. — The condition in the Azure role assignment explicitly denies read access to the database 'proddb' for user@contoso.com. In Azure RBAC, a deny assignment overrides any allow assignments, so even if the user has other roles granting read permissions, this condition will block all data read operations on that specific database. Therefore, the user will be denied the ability to read data from the database.
What should I do if I get this DP-300 question wrong?
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
What is the key concept behind this question?
Read the scenario before looking for a memorised answer.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
This DP-300 practice question is part of Courseiva's free Microsoft certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the DP-300 exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.