Designing Database Solutions for Microsoft SQL Server 2012

Here you have the best Microsoft 70-465 practice exam questions

  • You have 64 total questions to study from
  • Each page has 5 questions, making a total of 13 pages
  • You can navigate through the pages using the buttons at the bottom
  • This questions were last updated on December 11, 2025
  • This site is not affiliated with or endorsed by Microsoft.
Question 1 of 64
You are designing a Windows Azure SQL Database for an order fulfillment system. You create a table named Sales.Orders with the following script.
Exam 70-465: Question 1 - Image 1
Each order is tracked by using one of the following statuses:
✑ Fulfilled
✑ Shipped
✑ Ordered
✑ Received
You need to design the database to ensure that that you can retrieve the following information:
✑ The current status of an order
✑ The previous status of an order.
✑ The date when the status changed.
The solution must minimize storage.
More than one answer choice may achieve the goal. Select the BEST answer.
Correct Answer: B

Question 2 of 64
You create a stored procedure that retrieves all of the rows from a table named Table1.
You need to recommend a solution to ensure that all of the statements in the stored procedure can be executed if another transaction is modifying rows in Table1 simultaneously.
What should you recommend?
Correct Answer: A

Question 3 of 64
You have a SQL Server instance on a server named Server1.
You need to recommend a solution to perform the following tasks every week:
✑ Rebuild the indexes by using a new fill factor.
✑ Run a custom T-SQL command.
✑ Back up the databases.
What should you recommend?
More than one answer choice may achieve the goal. Select the BEST answer.
Correct Answer: C

Question 4 of 64
HOTSPOT -
You use SQL Server 2014. You create a table within a database by using the following DDL:
Exam 70-465: Question 4 - Image 1
The following table illustrates a representative sample of data:
Exam 70-465: Question 4 - Image 2
The system is expected to handle 50 million orders a month over the next five years.
You have been instructed by your Team Lead to follow best practices for storage and performance in the utilization of SPARSE columns.
Which columns should you designate as SPARSE? To answer, mark each column as SPARSE or NOT SPARSE in the answer area.
Hot Area:
Exam 70-465: Question 4 - Image 3
Correct Answer:
Note:
Sparse columns are ordinary columns that have an optimized storage for null values. Sparse columns reduce the space requirements for null values at the cost of more overhead to retrieve nonnull values. Consider using sparse columns when the space saved is at least 20 percent to 40 percent.
Reference:
Use Sparse Columns Exam 70-465: Question 4 - Image 4
Question 5 of 64
DRAG DROP -
You plan to deploy a database to SQL Azure.
You are designing two stored procedures named USP_1 and USP_2 that have the following requirements:
✑ Prevent data read by USP_1 from being modified by other active processes.
✑ Allow USP_2 to perform dirty reads.
You need to recommend the isolation level for the stored procedures.
The solution must maximize concurrency.
Which isolation levels should you recommend?
To answer, drag the appropriate isolation level to the correct stored procedure in the answer area.
Select and Place:
Exam 70-465: Question 5 - Image 1
Correct Answer:
Note:
* SP1: repeatable read
a repeatable read scan retains locks on every row it touches until the end of the transaction. Even rows that do not qualify for the query result remain locked.
These locks ensure that the rows touched by the query cannot be updated or deleted by a concurrent session until the current transaction completes (whether it is committed or rolled back).
* SP2: read uncommitted permits repeatable reads
Reference:
Transaction Isolation Levels Exam 70-465: Question 5 - Image 2