This page was exported from Braindump2go Free Exam Dumps with PDF and VCE Collection [ https://www.mcitpdump.com ] Export date:Fri Apr 26 21:49:11 2024 / +0000 GMT ___________________________________________________ Title: Real Questions For Exam Microsoft 70-461 From Braindump2go (81-90) --------------------------------------------------- 2015 Microsoft 70-461 Certification Exam is coming! Getting a Laest 70-461 Practice Test is very important for an Exam Candiate! Braindump2go New Updated 70-461 Exam Questions Well Formatted in PDF and VCE versions, providing you convenience and excellence both at the same time! Free Questions and Answer are provided Following: Vendor: MicrosoftExam Code: 70-461Exam Name: Querying Microsoft SQL Server 2012 QUESTION 81You use a contained database named ContosoDb within a domain. You need to create a user who can log on to the ContosoDb database. You also need to ensure that you can port the database to different database servers within the domain without additional user account configurations. Which type of user should you create? A.    User mapped to a certificateB.    SQL user without loginC.    Domain userD.    SQL user with login Answer: B QUESTION 82You administer a Microsoft SQL Server 2012 server. You plan to deploy new features to an application. You need to evaluate existing and potential clustered and non-clustered indexes that will improve performance. What should you do? A.    Query the sys.dm_db_index_usage_stats DMV.B.    Query the sys.dm_db_missing_index_details DMV.C.    Use the Database Engine Tuning Advisor.D.    Query the sys.dm_db_missing_index_columns DMV. Answer: C QUESTION 83You administer a Microsoft SQL Server database named Sales. The database is 3 terabytes in size. The Sales database is configured as shown in the following table. You discover that Sales_2.ndf is corrupt. You need to recover the corrupted data in the minimum amount of time. What should you do? A.    Perform a file restore.B.    Perform a transaction log restore.C.    Perform a restore from a full backup.D.    Perform a filegroup restore. Answer: A QUESTION 84Your database contains a table named SalesOrders. The table includes a DATETIME column named OrderTime that stores the date and time each order is placed. There is a non-clustered index on the OrderTime column. The business team wants a report that displays the total number of orders placed on the current day. You need to write a query that will return the correct results in the most efficient manner. Which Transact-SQL query should you use? A.    SELECT COUNT (*) FROM SaLeaOrders WHERE OrderTime = CONVERT(DATE, GETDATE ())B.    SELECT COUNT(*) FROM SalesOrders WHERE OrderTime - GETDATE()C.    SELECT COUNT(-) FROM SaLesCrders WHERE CONCERT(VARCHAR, OrderTime, 112) = CONVERT (VARCHAR, GETDATE(I, 112)D.    SELECT CCUNT(*) FROM SalesCrder3 WHERE CrderTime >= CONVERT(DATE, GETDATE()) AND CrderTime < DATEADD(DAY, CONVERT(DATS, GETDATE())) Answer: D QUESTION 85Your application contains a stored procedure for each country. Each stored procedure accepts an employee identification number through the @EmpID parameter. You plan to build a single process for each employee that will execute the stored procedure based on the country of residence. Which approach should you use? A.    a recursive stored procedureB.    TriggerC.    An UPDATE statement that includes CASED.    CursorE.    The foreach SQLCLR statement Answer: D QUESTION 86You use Microsoft SQL Server 2012 to develop a database application. You create a stored procedure named dbo.ModifyData that can modify rows. You need to ensure that when the transaction fails, dbo.ModifyData meets the following requirements:- Does not return an error- Closes all opened transactionsWhich Transact-SQL statement should you use? A.    BEGIN TRANSACTIONBEGIN TRYEXEC dbo.ModifyDataCOMMIT TRANSACTIONEND TRYBEGIN CATCHIF @@ TRANCOUNT = 0ROLLBACK TRANSACTION;END CATCHB.    BEGIN TRANSACTIONBEGIN TRYEXEC dbo.ModifyDataCOMMIT TRANSACTIONEND TRYBEGIN CATCHIF @@ERRCR != 0ROLLBACK TRANSACTION;THROW;END CATCHC.    BEGIN TRANSACTIONBEGIN TRYEXEC dbo.ModifyDataCOMMIT TRANSACTIONEND TRYBEGIN CATCHIF @@TRANCOUNT = 0ROLLBACK TRANSACTION;THROW;END CATCHD.    BEGIN TRANSACTIONBEGIN TRYEXEC dbo.ModifyDataCOMMIT TRANSACTIONEND TRYBEGIN CATCHIF @@ZRROR !- 0ROLLBACK TRANSACTION;END CATCH Answer: D QUESTION 87You are developing a database application by using Microsoft SQL Server 2012. An application that uses a database begins to run slowly. You discover that during reads, the transaction experiences blocking from concurrent updates. You need to ensure that throughout the transaction the data maintains the original version. What should you do? A.    Add a HASH hint to the query.B.    Add a LOOP hint to the query.C.    Add a FORCESEEK hint to the query.D.    Add an INCLUDE clause to the index.E.    Add a FORCESCAN hint to the Attach query.F.    Add a columnstore index to cover the query.G.    Enable the optimize for ad hoc workloads option.H.    Cover the unique clustered index with a columnstore index.I.    Include a SET FORCEPLAN ON statement before you run the query.J.    Include a SET STATISTICS PROFILE ON statement before you run the query.K.    Include a SET STATISTICS SHOWPLAN_XML ON statement before you run the query.L.    Include a SET TRANSACTION ISOLATION LEVELREPEATABLE READ statement before you run the query.M.    Include a SET TRANSACTION ISOLATION LEVEL SNAPSHOT statement before you run the query.N.    Include a SET TRANSACTION ISOLATION LEVEL SERIALIZABLE statement before you run the query. Answer: M QUESTION 88You are developing a database application by using Microsoft SQL Server 2012. You have a query that runs slower than expected. You need to capture execution plans that will include detailed information on missing indexes recommended by the query optimizer. What should you do? A.    Add a HASH hint to the query.B.    Add a LOOP hint to the query.C.    Add a FORCESEEK hint to the query.D.    Add an INCLUDE clause to the index.E.    Add a FORCESCAN hint to the Attach query.F.    Add a columnstore index to cover the query.G.    Enable the optimize for ad hoc workloads option.H.    Cover the unique clustered index with a columnstore index.I.    Include a SET FORCEPLAN ON statement before you run the query.J.    Include a SET STATISTICS PROFILE ON statement before you run the query.K.    Include a SET STATISTICS SHOWPLAN_XML ON statement before you run the query.L.    Include a SET TRANSACTION ISOLATION LEVELREPEATABLE READ statement before you run the query.M.    Include a SET TRANSACTION ISOLATION LEVEL SNAPSHOT statement before you run the query.N.    Include a SET TRANSACTION ISOLATION LEVEL SERIALIZABLE statement before you run the query. Answer: K QUESTION 89You are developing a database application by using Microsoft SQL Server 2012. An application that uses a database begins to run slowly. You discover that a large amount of memory is consumed by single-use dynamic queries. You need to reduce procedure cache usage from these statements without creating any additional indexes. What should you do? A.    Add a HASH hint to the query.B.    Add a LOOP hint to the query.C.    Add a FORCESEEK hint to the query.D.    Add an INCLUDE clause to the index.E.    Add a FORCESCAN hint to the Attach query.F.    Add a columnstore index to cover the query.G.    Enable the optimize for ad hoc workloads option.H.    Cover the unique clustered index with a columnstore index.I.    Include a SET FORCEPLAN ON statement before you run the query.J.    Include a SET STATISTICS PROFILE ON statement before you run the query.K.    Include a SET STATISTICS SHOWPLAN_XML ON statement before you run the query.L.    Include a SET TRANSACTION ISOLATION LEVELREPEATABLE READ statement before you run the query.M.    Include a SET TRANSACTION ISOLATION LEVEL SNAPSHOT statement before you run the query.N.    Include a SET TRANSACTION ISOLATION LEVEL SERIALIZABLE statement before you run the query. Answer: GExplanation:http://msdn.microsoft.com/en-us/library/cc645587.aspx QUESTION 90You have a database that contains the tables as shown below: You have a stored procedure named Procedure1. Procedure1 retrieves all order ids after a specific date. The rows for Procedure1 are not sorted. Procedure1 has a single parameter named Parameter1. Parameter1 uses the varchar type and is configured to pass the specific date to Procedure1. A database administrator discovers that OrderDate is not being compared correctly to Parameter1 after the data type of the column is changed to datetime. You need to update the SELECT statement to meet the following requirements:- The code must NOT use aliases.- The code must NOT use object delimiters.- The objects called in Procedure1 must be able to be resolved by all users.- OrderDate must be compared to Parameter1 after the data type of Parameter1 is changed to datetime.Which SELECT statement should you use? To answer, type the correct code in the answer area.Answer: SELECT Orders.OrderIDFROM OrdersWHERE Orders.OrderDate>CONVERT(datetime,@Parameter1) For those who feel the overwhelming anxiety before their 70-461 exam,Braindump2go Latest updated 70-461 Exam Dumps will help you Pass 100% in a short time preparation! 70-461 Exam Dumps PDF & VCE Full Version Instant Download! http://www.braindump2go.com/70-461.html --------------------------------------------------- Images: http://www.itexamquiz.com/braindump2go/bdimages/1138ac994149_EF17/110.png http://www.itexamquiz.com/braindump2go/bdimages/1138ac994149_EF17/wps2F0E.tmp_thumb_thumb.png http://www.itexamquiz.com/braindump2go/bdimages/1138ac994149_EF17/wps6F0B.tmp_thumb_thumb.png http://www.itexamquiz.com/braindump2go/bdimages/1138ac994149_EF17/15.png --------------------------------------------------- --------------------------------------------------- Post date: 2015-02-04 09:01:21 Post date GMT: 2015-02-04 09:01:21 Post modified date: 2015-02-04 09:01:21 Post modified date GMT: 2015-02-04 09:01:21 ____________________________________________________________________________________________ Export of Post and Page as text file has been powered by [ Universal Post Manager ] plugin from www.gconverters.com