Exam2pass
0 items Sign In or Register
  • Home
  • IT Exams
  • Guarantee
  • FAQs
  • Reviews
  • Contact Us
  • Demo
Home > Microsoft > Microsoft Certifications > DP-300
Microsoft DP-300  Exam Questions & Answers
Download Demo

  Printable PDF

Microsoft DP-300 Exam Questions & Answers


Want to pass your Microsoft DP-300 exam in the very first attempt? Try Exam2pass! It is equally effective for both starters and IT professionals.

  • Vendor: Microsoft

    Exam Code: DP-300

    Exam Name: Administering Relational Databases on Microsoft Azure

    Certification Provider: Microsoft

    Total Questions: 376 Q&A ( View Details)

    Updated on: May 25, 2026

    Note: Product instant download. Please sign in and click My account to download your product.
  • PDF Only: $45.99
    Phone Mac Windows
    Software Only: $49.99
    Windows
    Software + PDF: $59.99

  • Updated exam questions with all objectives covered
    Verified answers
    365 days free updates
    99% success rate
    100% money back guarantee
    24/7 customer support

Related Exams

  • 62-193 Technology Literacy for Educators
  • 70-243 Administering and Deploying System Center 2012 Configuration Manager
  • 70-355 Universal Windows Platform – App Data, Services, and Coding Patterns
  • 77-420 Excel 2013
  • 77-427 Excel 2013 Expert Part One
  • 77-725 Word 2016 Core Document Creation, Collaboration and Communication
  • 77-726 Word 2016 Expert Creating Documents for Effective Communication
  • 77-727 Excel 2016 Core Data Analysis, Manipulation, and Presentation
  • 77-728 Excel 2016 Expert: Interpreting Data for Insights
  • 77-731 Outlook 2016 Core Communication, Collaboration and Email Skills
  • 77-882 Excel 2010
  • 77-886 SharePoint 2010
  • 77-888 Excel 2010 Expert
  • 98-349 Windows Operating System Fundamentals
  • 98-361 Software Development Fundamentals
  • 98-364 Database Fundamentals
  • 98-365 Windows Server Administration Fundamentals
  • 98-366 Networking Fundamentals
  • 98-367 Security Fundamentals
  • 98-368 Mobility and Devices Fundamentals
  • 98-375 HTML5 Application Development Fundamentals
  • 98-381 Introduction to Programming Using Python
  • 98-382 Introduction to Programming Using JavaScript
  • 98-383 Introduction to Programming Using HTML and CSS
  • 98-388 Introduction to Programming Using Java
  • AB-100 Agentic AI Business Solutions Architect
  • AB-730 AI Business Professional
  • AB-731 AI Transformation Leader
  • AB-900 Microsoft 365 Copilot and Agent Administration Fundamentals
  • AI-102 Designing and Implementing a Microsoft Azure AI Solution

Related Certifications

  • Dynamics C5
  • Dynamics-POS-2009
  • MCITP
  • MCSE
  • MCTS
  • Microsoft Business I...
  • Microsoft Business S...
  • Microsoft Certificat...
  • Microsoft Certified ...
  • Microsoft Dynamics
  • Microsoft Dynamics 3...
  • Microsoft Dynamics A...
  • Microsoft Dynamics A...
  • Microsoft Dynamics C...
  • Microsoft Dynamics C...
  • Microsoft Dynamics C...
  • Microsoft Dynamics G...
  • Microsoft Dynamics N...
  • Microsoft Dynamics S...
  • Microsoft other Cert...

DP-300 Online Practice Questions and Answers

Questions 1

HOTSPOT

You have an Azure SQL database named db1.

You need to retrieve the resource usage of db1 from the last week.

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

NOTE: Each correct selection is worth one point.

Hot Area:

Show Answer

Correct Answer:

Box 1: sys.resource_stats

sys.resource_stats returns CPU usage and storage data for an Azure SQL Database. It has database_name and start_time columns.

Box 2: DateAdd

The following example returns all databases that are averaging at least 80% of compute utilization over the last one week.

DECLARE @s datetime;

DECLARE @e datetime;

SET @s= DateAdd(d,-7,GetUTCDate());

SET @e= GETUTCDATE();

SELECT database_name, AVG(avg_cpu_percent) AS Average_Compute_Utilization

FROM sys.resource_stats

WHERE start_time BETWEEN @s AND @e

GROUP BY database_name

HAVING AVG(avg_cpu_percent) >= 80

Incorrect Answers:

sys.dm_exec_requests:

sys.dm_exec_requests returns information about each request that is executing in SQL Server. It does not have a column named database_name.

sys.dm_db_resource_stats:

sys.dm_db_resource_stats does not have any start_time column.

Note: sys.dm_db_resource_stats returns CPU, I/O, and memory consumption for an Azure SQL Database database. One row exists for every 15 seconds, even if there is no activity in the database. Historical data is maintained for

approximately one hour.

Sys.dm_user_db_resource_governance returns actual configuration and capacity settings used by resource governance mechanisms in the current database or elastic pool. It does not have any start_time column.

Reference:

https://docs.microsoft.com/en-us/sql/relational-databases/system-catalog-views/sys-resource-stats-azure-sql-database

Questions 2

HOTSPOT

You have a SQL Server on Azure Virtual Machines instance named VM1 that hosts a database named DB1.

You run the following query.

For each of the following statements, select Yes if the statement is true. Otherwise, select No.

NOTE: Each correct selection is worth one point.

Hot Area:

Show Answer

Correct Answer:

Box 1: No

A copy-only log backup preserves the existing log archive point and, therefore, does not affect the sequencing of regular log backups.

Box 2: No

Box 3: Yes

If the database is online and you plan to perform a restore operation on the database, begin by backing up the tail of the log. To avoid an error for an online database, you must use the ... WITH NORECOVERY option of the BACKUP

Transact-SQL statement.

Reference:

https://docs.microsoft.com/en-us/sql/relational-databases/backup-restore/tail-log-backups-sql-server

https://docs.microsoft.com/en-us/sql/relational-databases/backup-restore/copy-only-backups-sql-server

Questions 3

DRAG DROP

You have an Azure SQL database that contains a table named Employees. Employees contains a column named Salary.

You need to encrypt the Salary column. The solution must prevent database administrators from reading the data in the Salary column and must provide the most secure encryption.

Which three actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order.

Select and Place:

Show Answer More Questions

Correct Answer:

Step 1: Create a column master key

Create a column master key metadata entry before you create a column encryption key metadata entry in the database and before any column in the database can be encrypted using Always Encrypted.

Step 2: Create a column encryption key.

Step 3: Encrypt the Salary column by using the randomized encryption type.

Randomized encryption uses a method that encrypts data in a less predictable manner. Randomized encryption is more secure, but prevents searching, grouping, indexing, and joining on encrypted columns.

Note: A column encryption key metadata object contains one or two encrypted values of a column encryption key that is used to encrypt data in a column. Each value is encrypted using a column master key.

Incorrect Answers:

Deterministic encryption.

Deterministic encryption always generates the same encrypted value for any given plain text value. Using deterministic encryption allows point lookups, equality joins, grouping and indexing on encrypted columns. However, it may also allow

unauthorized users to guess information about encrypted values by examining patterns in the encrypted column, especially if there's a small set of possible encrypted values, such as True/False, or North/South/East/West region.

Reference:

https://docs.microsoft.com/en-us/sql/relational-databases/security/encryption/always-encrypted-database-engine

Why Choose Exam2pass DP-300 Exam PDF and VCE Simulator?

  • 100% Pass and Money Back Guarantee

    Exam2pass DP-300 exam dumps are contained with latest DP-300 real exam questions and answers. Exam2pass DP-300 PDF and VCE simulator are revised by the most professional DP-300 expert team. All the DP-300 exam questions are selected from the latest real exam and answers are revised to be accurate. 100% pass guarantee and money back on exam failure.

  • The Most Professional Support Service

    Exam2pass has the most skillful DP-300 experts. Candidates can get timely help when needed. Exam2pass DP-300 exam PDF and VCE simulator are the most up-to-date and valid. The most professional support service are provided to help the DP-300 candidates at anytime and anywhere.

  • 365 Days Free Update Download

    Exam2pass DP-300 exam PDF and VCE simulator are timely updated in 365 days a year. Users can download the update for free for 365 days after payment. Exam2pass DP-300 exam dumps are updated frequently by the most professional DP-300 expert team. DP-300 candidates can have the most valid DP-300 exam PDF and VCE at any time when needed.

  • Free Demo Download

    Download free demo of the Exam2pass exam PDF and VCE simulator and try it. Do not need to pay for the whole product before you try the free trial version. Get familiar about the exam questions and exam structure by trying the free sample questions of the exam PDF and VCE simulator. Try before purchase now!

Exam2Pass----The Most Reliable Exam Preparation Assistance

There are tens of thousands of certification exam dumps provided on the internet. And how to choose the most reliable one among them is the first problem one certification candidate should face. Exam2Pass provide a shot cut to pass the exam and get the certification. If you need help on any questions or any Exam2Pass exam PDF and VCE simulators, customer support team is ready to help at any time when required.

Home | Guarantee & Policy |  Privacy & Policy |  Terms & Conditions |  How to buy |  FAQs |  About Us |  Contact Us |  Demo |  Reviews

2026 Copyright @ exam2pass.com All trademarks are the property of their respective vendors. We are not associated with any of them.