Courseiva

DP-900 · topic practice

Identify considerations for relational data on Azure practice questions

Use this page to practise Identify considerations for relational data on Azure questions for this certification. Focus on how the exam tests identify considerations for relational data on azure in scenario format — understanding the why behind each answer builds more durable knowledge than memorising options.

Courseiva uses original exam-style practice questions designed for learning and revision. The goal is to understand the concepts, recognise exam patterns, and improve through explanations — not memorise copied exam dumps.

Reviewed byJohnson Ajibi· MSc IT Security
20 questionsDomain: Identify considerations for relational data on Azure

What the exam tests

What to know about Identify considerations for relational data on Azure

Identify considerations for relational data on Azure questions on this certification test your ability to deploy and manage identify considerations for relational data on azure concepts in scenario-based situations.

Core Identify considerations for relational data on Azure concepts and how they apply in real-world cloud scenarios.

How to deploy identify considerations for relational data on azure correctly and verify the outcome.

Troubleshooting identify considerations for relational data on azure issues by interpreting error output and system state.

Cloud best practices and Identify considerations for relational data on Azure design trade-offs tested by this certification.

Watch out for

Common Identify considerations for relational data on Azure exam traps

  • Selecting the most expensive service when a simpler managed option meets the requirement.
  • Forgetting that cloud resources must be explicitly secured — defaults are rarely secure.
  • Choosing a global service fix when the issue is region-specific.
  • Overlooking cost implications of cross-region data transfer in architecture questions.

Practice set

Identify considerations for relational data on Azure questions

20 questions · select your answer, then reveal the explanation

A startup is developing a web application that requires a relational database with PostgreSQL compatibility. They want a fully managed service that automatically handles backups, patching, and provides high availability with a 99.99% SLA. Which Azure service should they choose?

A retail company runs an e-commerce platform on a single SQL Server database. The database experiences unpredictable spikes in read-only reporting queries that degrade transactional performance. They want to migrate to Azure SQL Database and isolate the reporting workload while ensuring it sees the most current data. Which feature should they enable?

A company has an Azure SQL Database that supports a critical business application in the West US region. They want to ensure that if the primary region becomes unavailable, the database can automatically fail over to a secondary replica in the East US region with minimal data loss. The secondary replica must also be readable to offload some reporting queries when the primary is healthy. Which Azure SQL Database feature should they enable?

A company runs a critical OLTP application on a single Azure SQL Database in the West US region. They need to ensure high availability with automatic failover to a secondary region in case of a regional outage. The solution must minimize data loss and allow the secondary database to be readable for reporting queries when the primary is healthy. Which feature should they enable?

A company is evaluating deployment options for a new business application that requires a fully managed relational database. The application must support high availability with automatic failover and horizontal scaling for read-heavy workloads. The development team wants to minimize administrative overhead and prefers a PaaS solution that offers built-in read scale-out. Which Azure SQL deployment option should they choose?

A company plans to migrate an on-premises SQL Server database to Azure. The database relies on SQL Agent jobs for nightly maintenance, uses Service Broker for asynchronous messaging, and requires high CPU and memory resources. The company wants to minimize application code changes. Which two Azure SQL deployment options meet all these requirements? (Choose two.)

A company uses Azure SQL Database for an e-commerce application. The Orders table contains columns: OrderID (int, primary key), CustomerID (int), OrderDate (datetime), TotalAmount (decimal). Queries frequently filter by CustomerID and OrderDate to retrieve orders for a specific customer within a date range. Queries also need to retrieve a single order by OrderID quickly. Which indexing strategy will most improve the performance of these queries?

A company uses Azure SQL Database for an order management system. The Orders table has columns: OrderID (int, primary key), CustomerID (int), OrderDate (datetime), Status (varchar), and TotalAmount (decimal). The most frequent queries retrieve orders for a specific CustomerID within a date range and order the results by OrderDate. Additionally, single order lookups by OrderID must remain fast. Which indexing strategy best satisfies both requirements?

A company runs a customer-facing application on an Azure SQL Database. The application experiences high read traffic from reporting queries that cause performance degradation on the primary database. The company needs a solution that offloads reporting queries without impacting the transactional workload, and the solution must keep the reporting data synchronized within seconds. Which feature should they use?

A company has an on-premises SQL Server 2016 database that uses SQL Server Agent jobs and cross-database queries across multiple databases. They want to migrate to Azure with minimal application changes, requiring native VNet integration and near 100% compatibility with the on-premises SQL Server instance. Which Azure deployment option should they choose?

A company runs an e-commerce application on Azure SQL Database. The application experiences heavy read traffic from reporting dashboards that query the same tables as the transactional workload. This causes performance degradation for the application. The company needs a solution that offloads reporting queries to a read-only copy that stays synchronized within minutes, without impacting transactional performance. Which Azure SQL Database feature should they use?

A financial application uses Azure SQL Database. The workload consists of a high volume of small, frequent insert operations (OLTP) and periodic complex analytical queries that scan large portions of the same table (OLAP). The table currently has a clustered columnstore index. The inserts are suffering from performance degradation. What should the company do to improve insert performance while still enabling efficient analytical queries?

Which of the following statements correctly match an Azure data security feature to its description? (Select all that apply)

Drag a concept onto its matching description — or click a concept then click the description.

Concepts
Matches

Encrypts data at rest automatically

Encrypts data in use and in transit

Identity-based access control

IP-level network restrictions

Private IP connectivity over Azure backbone

A company uses Azure SQL Database for a mission-critical application. They need to ensure that in the event of a regional outage, the database can be failed over to a secondary region with minimal data loss. The recovery point objective (RPO) is 5 seconds. Which deployment option should they choose?

A company has an on-premises SQL Server database that they want to migrate to Azure with minimal changes to the application. They need to use the least amount of administrative effort for patching and backups. Which Azure service should they choose?

Which THREE considerations are important when choosing between Azure SQL Database and Azure SQL Managed Instance?

Refer to the exhibit. A failover group configuration is displayed. The database 'mydb' is currently on server1 in westus. What will happen if a regional outage occurs in westus?

Exhibit

Refer to the exhibit.

```bash
# Azure CLI output
{
  "name": "myfailovergroup",
  "partnerServers": [
    {
      "id": "/subscriptions/.../resourceGroups/rg1/providers/Microsoft.Sql/servers/server2",
      "location": "eastus",
      "replicationRole": "Primary"
    },
    {
      "id": "/subscriptions/.../resourceGroups/rg1/providers/Microsoft.Sql/servers/server1",
      "location": "westus",
      "replicationRole": "Secondary"
    }
  ],
  "readWriteEndpoint": {
    "failoverPolicy": "Automatic",
    "failoverWithDataLossGracePeriodMinutes": 60
  },
  "readOnlyEndpoint": {
    "failoverPolicy": "Disabled"
  },
  "databases": [
    "/subscriptions/.../resourceGroups/rg1/providers/Microsoft.Sql/servers/server1/databases/mydb"
  ]
}
```

Refer to the exhibit. A database administrator runs the KQL query shown to monitor failed logouts? Actually, the query filters for 'DATABASE_LOGOUT' events. What is the primary purpose of this query?

Exhibit

Refer to the exhibit.

```sql
-- KQL query from Azure Monitor
AzureDiagnostics
| where ResourceProvider == "MICROSOFT.SQL"
| where Category == "SQLSecurityAuditEvents"
| where action_id_s == "DATABASE_LOGOUT"
| summarize Count = count() by user_name_s, bin(TimeGenerated, 1h)
| top 10 by Count desc
```

You need to run a complex T-SQL query that joins tables from Azure SQL Database and Azure SQL Managed Instance in a single query. Which feature should you use?

A company uses Azure SQL Database for an e-commerce application. They need to ensure that if the primary region fails, the database can be failed over to a secondary region with minimal data loss. Which feature should they enable?

Free account

Track your progress over time

Create a free account to save your results and see which topics improve across sessions.

Focused Identify considerations for relational data on Azure sessions

Start a Identify considerations for relational data on Azure only practice session

Every question in these sessions is drawn from the Identify considerations for relational data on Azure domain — nothing else.

Related practice questions

Related DP-900 topic practice pages

Move into related areas when this topic feels solid.

Frequently asked questions

What does the DP-900 exam test about Identify considerations for relational data on Azure?
Identify considerations for relational data on Azure questions on this certification test your ability to deploy and manage identify considerations for relational data on azure concepts in scenario-based situations.
How should I use these practice questions?
Select your answer before revealing the explanation. Then read why each option is right or wrong — this active recall approach builds retention far faster than re-reading notes.
Can I practise just Identify considerations for relational data on Azure questions in a focused session?
Yes — the session launcher on this page draws every question from the Identify considerations for relational data on Azure domain. Use a 10-question session first to gauge your baseline, then move to 20 or 30 once the weak spots are clear.
Where can I practise other DP-900 topics?
Use the topic links above to move to related areas, or go back to the DP-900 question bank to see all topics.
Are these real exam questions or dumps?
These are original practice questions written to test the same concepts the DP-900 exam covers. They are not copied from any real exam or dump site.