0% found this document useful (0 votes)
47 views12 pages

DP 300 Demo

The document provides questions and answers related to administering relational databases on Microsoft Azure. It includes multiple choice, drag and drop, and hotspot questions about planning a database migration, configuring user authentication using Active Directory, and collecting database metrics using Azure services.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
47 views12 pages

DP 300 Demo

The document provides questions and answers related to administering relational databases on Microsoft Azure. It includes multiple choice, drag and drop, and hotspot questions about planning a database migration, configuring user authentication using Active Directory, and collecting database metrics using Azure services.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 12

Questions and Answers PDF 1/12

Thank You for your download

om
Microsoft DP-300 Exam Question & Answers (Demo)
Administering Relational Databases on Microsoft

.c
Azure Exam

ps
m
du
am
ex
id
al
.v
w
w
// w
s:
tp
ht

https://www.validexamdumps.com/DP-300.html
Questions and Answers PDF 2/12

Version: 19.0

Question: 1

om
.c
HOTSPOT

ps
m
du
You are planning the migration of the SERVER1 databases. The solution must meet the business
requirements.
am
ex

What should you include in the migration plan? To answer, select the appropriate options in the
id

answer area.
al
.v
w

NOTE: Each correct selection is worth one point.


w
// w
s:
tp
ht

Answer:
Explanation:
Questions and Answers PDF 3/12

om
.c
Azure Database Migration service

ps
m
du
Box 1: Premium 4-VCore am
Scenario: Migrate the SERVER1 databases to the Azure SQL Database platform.
ex

Minimize downtime during the migration of the SERVER1 databases.


id
al

Premimum 4-vCore is for large or business critical workloads. It supports online migrations, offline
.v

migrations, and faster migration speeds.


w
w
// w

Incorrect Answers:
s:

The Standard pricing tier suits most small- to medium- business workloads, but it supports offline
tp

migration only.
ht

Box 2: A VPN gateway

You need to create a Microsoft Azure Virtual Network for the Azure Database Migration Service by
using the Azure Resource Manager deployment model, which provides site-to-site connectivity to
your on-premises source servers by using either ExpressRoute or VPN.

Reference:

https://azure.microsoft.com/pricing/details/database-migration/
Questions and Answers PDF 4/12

https://docs.microsoft.com/en-us/azure/dms/tutorial-sql-server-azure-sql-online

Question: 2
DRAG DROP

You need to configure user authentication for the SERVER1 databases. The solution must meet the

om
security and compliance requirements.

.c
ps
Which three actions should you perform in sequence? To answer, move the appropriate actions from

m
the list of actions to the answer area and arrange them in the correct order.

du
am
ex
id
al
.v
w
w
// w
s:
tp
ht

Answer:
Explanation:
Questions and Answers PDF 5/12

om
.c
Scenario: Authenticate database users by using Active Directory credentials.

ps
m
du
The configuration steps include the following procedures to configure and use Azure Active Directory
authentication.
am
ex

Create and populate Azure AD.


id
al

Optional: Associate or change the active directory that is currently associated with your Azure
.v

Subscription.
w

Create an Azure Active Directory administrator. (Step 1)


w
w

Configure your client computers.


//
s:

Create contained database users in your database mapped to Azure AD identities. (Step 2)
tp

Connect to your database by using Azure AD identities. (Step 3)


ht

Reference:

https://docs.microsoft.com/en-us/azure/azure-sql/database/authentication-aad-overview

Question: 3
HOTSPOT
Questions and Answers PDF 6/12

How should you collect and stream metrics? To answer, select the appropriate options in the answer
area.

NOTE: Each correct selection is worth one point.

om
.c
ps
m
du
am
ex
id
al
.v
w

Answer:
w

Explanation:
// w
s:
tp
ht

Box 1: The server, the elastic pool, and the database


Questions and Answers PDF 7/12

SalesSQLDb1 is in an elastic pool named SalesSQLDb1Pool.

Litware technical requirements include: all SQL Server and Azure SQL Database metrics related to
CPU and storage usage and limits must be analyzed by using Azure built-in functionality.

Box 2: Azure Event hubs

Scenario: Migrate ManufacturingSQLDb1 to the Azure virtual machine platform.

om
Event hubs are able to handle custom metrics.

.c
ps
Incorrect Answers:

m
du
Azure Log Analytics am
Azure metric and log data are sent to Azure Monitor Logs, previously known as Azure Log Analytics,
directly by Azure. Azure SQL Analytics is a cloud only monitoring solution supporting streaming of
ex

diagnostics telemetry for all of your Azure SQL databases.


id
al
.v

However, because Azure SQL Analytics does not use agents to connect to Azure Monitor, it does not
support monitoring of SQL Server hosted on-premises or in virtual machines.
w
w
// w

Question: 4
s:
tp
ht

You need to identify the cause of the performance issues on SalesSQLDb1.

Which two dynamic management views should you use? Each correct answer presents part of the
solution.

NOTE: Each correct selection is worth one point.

A. sys.dm_pdw_nodes_tran_locks

B. sys.dm_exec_compute_node_errors

C. sys.dm_exec_requests
Questions and Answers PDF 8/12

E. sys.dm_pdw_nodes_os_wait_stats

F. sys.dm_tran_locks

Answer: AE
Explanation:

om
SalesSQLDb1 experiences performance issues that are likely due to out-of-date statistics and
frequent blocking queries.

.c
ps
m
A: Use sys.dm_pdw_nodes_tran_locks instead of sys.dm_tran_locks from Azure Synapse Analytics

du
(SQL Data Warehouse) or Parallel Data Warehouse.
am
ex

E: Example:
id

The following query will show blocking information.


al
.v

SELECT
w

t1.resource_type,
w
w

t1.resource_database_id,
//
s:

t1.resource_associated_entity_id,
tp

t1.request_mode,
ht

t1.request_session_id,

t2.blocking_session_id

FROM sys.dm_tran_locks as t1

INNER JOIN sys.dm_os_waiting_tasks as t2

ON t1.lock_owner_address = t2.resource_address;

Note: Depending on the system you’re working with you can access these wait statistics from one of
three locations:
Questions and Answers PDF 9/12

sys.dm_os_wait_stats: for SQL Server

sys.dm_db_wait_stats: for Azure SQL Database

sys.dm_pdw_nodes_os_wait_stats: for Azure SQL Data Warehouse

Incorrect Answers:

om
F: sys.dm_tran_locks returns information about currently active lock manager resources in SQL

.c
Server 2019 (15.x). Each row represents a currently active request to the lock manager for a lock that

ps
has been granted or is waiting to be granted.

m
Instead use sys.dm_pdw_nodes_tran_locks.

du
am
Reference:
ex

https://docs.microsoft.com/en-us/sql/relational-databases/system-dynamic-management-
id

views/sys-dm-tran-locks-transact-sql
al
.v
w

Question: 5
w
// w
s:
tp

HOTSPOT
ht

You need to recommend a configuration for ManufacturingSQLDb1 after the migration to Azure. The
solution must meet the business requirements.

What should you include in the recommendation? To answer, select the appropriate options in the
answer area.

NOTE: Each correct selection is worth one point.


Questions and Answers PDF 10/12

om
.c
Answer:

ps
Explanation:

m
du
am
ex
id
al
.v
w
w
// w
s:
tp

Scenario: Business Requirements


ht

Litware identifies business requirements include: meet an SLA of 99.99% availability for all Azure
deployments.

Box 1: Cloud witness

If you have a Failover Cluster deployment, where all nodes can reach the internet (by extension of
Azure), it is recommended that you configure a Cloud Witness as your quorum witness resource.

Box 2: Azure Basic Load Balancer


Questions and Answers PDF 11/12

Note: There are two main options for setting up your listener: external (public) or internal. The
external (public) listener uses an internet facing load balancer and is associated with a public Virtual
IP (VIP) that is accessible over the internet. An internal listener uses an internal load balancer and
only supports clients within the same Virtual Network.

Reference:

om
https://technet.microsoft.com/windows-server-docs/failover-clustering/deploy-cloud-witness

.c
ps
https://azure.microsoft.com/en-us/support/legal/sla/load-balancer/v1_0/

m
du
am
ex
id
al
.v
w
w
// w
s:
tp
ht
Questions and Answers PDF 12/12

Thank you for your visit.


To try more exams, please visit below link
https://www.validexamdumps.com/DP-300.html

om
.c
ps
m
du
am
ex
id
al
.v
w
w
// w
s:
tp
ht

You might also like