
















Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Exam questions from 91-120 questions and answers for Querying MS SQL Server 2012/2014
Typology: Exams
1 / 24
This page cannot be seen from the preview
Don't miss anything!

















70 - 461 Exam Dumps 70 - 461 Exam Questions 70 - 461 PDF Dumps 70 - 461 VCE Dumps
You use Microsoft SQL Server 2012 database to develop a shopping cart application. You need to invoke a table-valued function for each row returned by a query. Which Transact-SQL operator should you use? A. CROSS JOIN B. UNPIVOT C. PIVOT D. CROSS APPLY Answer: D Explanation: http://msdn.microsoft.com/en-us/library/ms175156.aspx QUESTION 92 You develop a database application for a university. You need to create a view that will be indexed that meets the following requirements:
70 - 461 Exam Dumps 70 - 461 Exam Questions 70 - 461 PDF Dumps 70 - 461 VCE Dumps Answer: Explanation: http://msdn.microsoft.com/en-us/library/ms187956.aspx QUESTION 93 What is the difference between the simple CASE expression and the searched CASE expression? A. The simple CASE expression is used when the database recovery model is simple, and the searched CASE expression is used when it's full or bulk logged. B. The simple CASE expression compares an input expression to multiple possible expressions in the WHEN clauses, and the searched CASE expression uses independent predicates in the WHEN clauses. C. The simple CASE expression can be used anywhere in a query, and the searched CASE expression can be used only in the WHERE clause. D. The simple CASE expression can be used anywhere in a query, and the searched CASE expression can be used only in query filters (ON, WHERE, HAVING). Answer: B QUESTION 94 You use Microsoft SQL Server 2012 to develop a database application. You create two tables by using the following table definitions.
70 - 461 Exam Dumps 70 - 461 Exam Questions 70 - 461 PDF Dumps 70 - 461 VCE Dumps
You create the following stored procedure. (Line numbers are included for reference only.) You need to ensure that the stored procedure performs the following tasks:
70 - 461 Exam Dumps 70 - 461 Exam Questions 70 - 461 PDF Dumps 70 - 461 VCE Dumps Answer: Explanation: http://technet.microsoft.com/en-us/libr ary/bb510625.aspx QUESTION 9 6 You use Microsoft SQL Server 2012 to develop a database that has two tables named Div1Cust and Div2Cust. Each table has columns named DivisionID and CustomerId. None of the rows in Div1Cust exist in Div2Cust. You need to write a query that meets the following requirements:
70 - 461 Exam Dumps 70 - 461 Exam Questions 70 - 461 PDF Dumps 70 - 461 VCE Dumps You grant the Select permission to User1 for this view. You need to change the view so that it displays only the records that were processed in the month prior to the current month. You need to ensure that after the changes, the view functions correctly for User1. Which four Transact-SQL statements should you use? (To answer, move the appropriate SQL statements from the list of statements to the answer area and arrange them in the correct order.) Answer:
70 - 461 Exam Dumps 70 - 461 Exam Questions 70 - 461 PDF Dumps 70 - 461 VCE Dumps Explanation: http://msdn.microsoft.com/en-us/library/hh213020.aspx http://msdn.microsoft.com/en-us/library/ms186819.aspx http://msdn.microsoft.com/en-us/library/ms173846.aspx QUESTION 98 You use Microsoft SQL Server 2012 to develop a database application. You create a table by using the following definition: CREATE TABLE Prices ( PriceId int IDENTITY(1,1) PRIMARY KEY, ActualPrice NUMERIC(16,9), PredictedPrice NUMERIC(16,9)) You need to create a computed column based on a user-defined function named udf_price_index. You also need to ensure that the column supports an index. Which three Transact-SQL statements should you use? (To answer, move the appropriate SQL statements from the list of statements to the answer area and arrange them in the correct order.)
70 - 461 Exam Dumps 70 - 461 Exam Questions 70 - 461 PDF Dumps 70 - 461 VCE Dumps
You use a Microsoft SQL Server 2012 database. You need to create an indexed view within the database for a report that displays Customer Name and the total revenue for that customer. Which four T-SQL statements should you use? (To answer, move the appropriate SQL statements from the list of statements to the answer area and arrange them in the correct order.) Answer:
70 - 461 Exam Dumps 70 - 461 Exam Questions 70 - 461 PDF Dumps 70 - 461 VCE Dumps Explanation: http://msdn.microsoft.com/en-us/library/ms191432.aspx QUESTION 100 You administer a Microsoft SQL Server 2012 database. You use an OrderDetail table that has the following definition. You need to create a non-clustered index on the SalesOrderID column in the OrderDetail table to include only rows that contain a value in the SpecialOfferID column. Which four Transact-SQL statements should you use? (To answer, move the appropriate statements from the list of statements to the answer area and arrange them in the correct order.)
70 - 461 Exam Dumps 70 - 461 Exam Questions 70 - 461 PDF Dumps 70 - 461 VCE Dumps
You want to add a new GUID column named BookGUID to a table named dbo.Book that already contains data. BookGUID will have a constraint to ensure that it always has a value when new rows are inserted into dbo.Book. You need to ensure that the new column is assigned a GUID for existing rows. Which four Transact-SQL statements should you use? (To answer, move the appropriate SQL statements from the list of statements to the answer area and arrange them in the correct order.) Answer:
70 - 461 Exam Dumps 70 - 461 Exam Questions 70 - 461 PDF Dumps 70 - 461 VCE Dumps Explanation: Actually, in the real world, you don't have to use WITH VALUES at the end of the statement and it works just as well. But because the question specifically states which FOUR TSQL statements to use, we have to include it. http://msdn.microsoft.com/en-us/library/ms190273.aspx QUESTION 102 You administer a Microsoft SQL Server 2012 database. The database contains a table named Employee. Part of the Employee table is shown in the exhibit.
70 - 461 Exam Dumps 70 - 461 Exam Questions 70 - 461 PDF Dumps 70 - 461 VCE Dumps
70 - 461 Exam Dumps 70 - 461 Exam Questions 70 - 461 PDF Dumps 70 - 461 VCE Dumps type. App1 is configured to pass @Count to a stored procedure. You need to create a stored procedure named usp_Customers for App1 that returns only the number of rows specified by the @Count parameter. The solution must NOT use BEGIN, END, or DECLARE statements. Part of the correct T-SQL statement has been provided in the answer area. Provide the complete code. Answer: CREATE PROCEDURE usp_Customers @Count int SELECT TOP(@Count) Customers.LastName FROM Customers ORDER BY Customers.LastName QUESTION 105 You need to create a query that calculates the total sales of each OrderlD from a table named Sales.Details. The table contains two columns named OrderlD and ExtendedAmount. The solution must meet the following requirements.
70 - 461 Exam Dumps 70 - 461 Exam Questions 70 - 461 PDF Dumps 70 - 461 VCE Dumps Answer: CREATE FUNCTION Sales.fn_OrdersByTerritory (@T int) RETURNS TABLE AS RETURN ( SELECT OrderID, OrderDate, SalesTerritoryID, TotalDue FROM Sales.OrdersByTerritory WHERE SalesTerritoryID=@T ) QUESTION 108 You have a database named Sales that contains the tables as shown in the exhibit.
70 - 461 Exam Dumps 70 - 461 Exam Questions 70 - 461 PDF Dumps 70 - 461 VCE Dumps You need to create a query that meets the following requirements: