MCSA Querying Microsoft SQL Server 2012/2014

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

  • You have 265 total questions to study from
  • Each page has 5 questions, making a total of 53 pages
  • You can navigate through the pages using the buttons at the bottom
  • This questions were last updated on December 13, 2025
  • This site is not affiliated with or endorsed by Microsoft.
Question 1 of 265
You develop a Microsoft SQL Server database that supports an application. The application contains a table that has the following definition:

CREATE TABLE Inventory -
(ItemID int NOT NULL PRIMARY KEY,
ItemsInStore int NOT NULL,
ItemsInWarehouse int NOT NULL)
You need to create a computed column that returns the sum total of the ItemsInStore and ItemsInWarehouse values for each row.
Which Transact-SQL statement should you use?
Correct Answer: A

The correct Transact-SQL statement for creating a computed column that returns the sum total of the ItemsInStore and ItemsInWarehouse values is 'ALTER TABLE Inventory ADD TotalItems AS ItemsInStore + ItemsInWarehouse'. This syntax correctly defines a computed column named TotalItems that calculates the sum of ItemsInStore and ItemsInWarehouse for each row in the Inventory table.

Question 2 of 265
You develop a Microsoft SQL Server database. You create a view from the Orders and OrderDetails tables by using the following definition.
Exam 70-461: Question 2 - Image 1
You need to improve the performance of the view by persisting data to disk. What should you do?
Correct Answer: D

To improve the performance of a view by persisting data to disk in SQL Server, you should create an indexed view. Creating a clustered index on the view materializes the view's data and stores it on disk, which can significantly improve performance especially for complex queries. This is done by creating a clustered index on the view. Other options like triggers (INSTEAD OF or AFTER) or using WITH VIEW_METADATA do not serve the purpose of persisting data to disk.

Question 3 of 265
Note: This question is part of a series of questions that use the same set of answer choices. An answer choice may be correct for more than one question in the series.
You develop a database for a travel application. You need to design tables and other database objects.
You create the Airline_Schedules table.
You need to store the departure and arrival dates and times of flights along with time zone information.
What should you do?
Correct Answer: I

To store both date and time along with time zone information, the DATETIMEOFFSET data type is appropriate. It includes the date, time, and the time zone offset, which allows the database to store the complete datetime value including time zone information. This aligns with the requirements of handling departure and arrival times in a travel application that operates across multiple time zones.

Question 4 of 265
Note: This question is part of a series of questions that use the same set of answer choices. An answer choice may be correct for more than one question in the series.
You develop a database for a travel application. You need to design tables and other database objects.
You create a stored procedure. You need to supply the stored procedure with multiple event names and their dates as parameters.
What should you do?
Correct Answer: E

Question 5 of 265
SIMULATION -
You have a view that was created by using the following code:
Exam 70-461: Question 5 - Image 1
You need to create an inline table-valued function named Sales.fn_OrdersByTerritory, which must meet the following requirements:
✑ Accept the @T integer parameter.
✑ Use one-part names to reference columns.
Filter the query results by SalesTerritoryID.
Exam 70-461: Question 5 - Image 2
✑ Return the columns in the same order as the order used in OrdersByTerritoryView.
Part of the correct Transact-SQL has been provided in the answer area below. Enter the Transact-SQL in the answer area that resolves the problem and meets the stated goals or requirements. You can add Transact-SQL within the Transact-SQL segment that has been provided as well as below it.
Exam 70-461: Question 5 - Image 3
Exam 70-461: Question 5 - Image 4
Correct Answer: