getcertified4sure.com

Top Tips Of 70-464 tutorials




Your success in Microsoft 70-464 is our sole target and we develop all our 70-464 braindumps in a way that facilitates the attainment of this target. Not only is our 70-464 study material the best you can find, it is also the most detailed and the most updated. 70-464 Practice Exams for Microsoft MCSE 70-464 are written to the highest standards of technical accuracy.

Q21. You need to ensure that a new execution plan is used by usp_GetOrdersByProduct each time the stored procedure runs. 

What should you do? 

A. Execute sp_help 'usp_GetOrdersByProduct'. 

B. Execute sp_recompile 'usp_GetOrdersByProduct'. 

C. Add WITH RECOMPILE to line 03 in usp_GetOrdersByProduct. 

D. Add WITH (FORCESEEK) to line 07 in usp_GetOrdersByProduct. 

Answer:

Explanation: 

Ref: http://msdn.microsoft.com/en-us/librAry/ms190439(v=sql.90).aspx 


Q22. While testing usp.GetFutureSessions, you discover that IX_Sessions is accessed by a scan rather than a seek. 

You need to minimize the amount of time it takes to execute usp_GetFutureSessions. 

What should you do? (Each correct answer presents part of the solution. Choose all that apply.) 

A. Option A 

B. Option B 

C. Option C 

D. Option D 

E. Option E 

F. Option F 

Answer: B,E 

Explanation: Future delivery dates. 


Q23. You have a server that has SQL Server 2012 installed. 

You need to identify which parallel execution plans are running in serial. 

Which tool should you use? 

A. Performance Monitor 

B. Database Engine Tuning Advisor 

C. Data Profile Viewer 

D. Extended Events 

Answer:

Explanation: 

http://msdn.microsoft.com/en-us/library/bb677278.aspx 

http://msdn.microsoft.com/en-us/library/bb630282.aspx http://www.sql-server-performance.com/2006/query-execution-plan-analysis/ http://www.simple-talk.com/sql/learn-sql-server/understanding-and-using-parallelism-in-sqlserver/ http://www.sqlservercentral.com/articles/SQL+Server+2012/At+last%2c+execution+plans+ show+true+thread+reservations./92458/ http://sqlblog.com/blogs/paul_white/archive/2011/12/23/forcing-a-parallel-query-executionplan.aspx http://sqlblog.com/blogs/paul_white/archive/2012/05/02/parallel-row-goals-gone-rogue.aspx http://msdn.microsoft.com/en-us/library/bb895310.aspx http://msdn.microsoft.com/en-us/library/bb895313.aspx http://msdn.microsoft.com/en-us/library/hh231122.aspx 


Q24. You need to implement a solution that resolves the salary query issue. Which statement should you execute on DB1? 

A. Option A B. Option B 

C. Option C 

D. Option D 

Answer:


Q25. You need to implement a solution that addresses the index monitoring requirements. 

What should you do? 

A. Schedule a SQL Server Agent job that saves data from the dynamic management views to a table in the database. 

B. Create a SQL Server Audit that saves data to a log file, and then create a SQL Server Audit Specification that gathers data from the DATABASE_OPERATION group. 

C. Create a performance monitor Data Collector Set (DCS) that monitors the SQL Server counters. 

D. Schedule a SQL Server Profiler trace, and then save the trace data to a table in the database. 

Answer:


Q26. You need to modify the Orders table to store the XML data used by the retailers. Which statement should you execute? 

A. ALTER Orders 

ADD originalOrder XML (ValidateOrder); 

B. ALTER Orders 

ADD originalOrder XML; 

C. ALTER Orders 

ADD originalOrder varchar(max); 

D. ALTER Orders 

ADD originalOrder varbinary(max); 

Answer:


Q27. You have a database that is accessed by 300 concurrent users. 

You need to log all of the queries that become deadlocked. The solution must meet the following requirements: 

. Provide a representation of the deadlock in XML format. 

. Minimize the impact on the server. 

What should you create? 

A. A SQL Server Profiler trace 

B. A script that enables trace flags 

C. A SQL Server Agent job that retrieves information from the sys.dm_tran_active_transactions dynamic management views 

D. A SQL Server Agent job that retrieves information from the sys.dm_tran_session_transactions dynamic management views 

Answer:

Explanation: Analyze Deadlocks with SQL Server Profiler Use SQL Server Profiler to identify the cause of a deadlock. A deadlock occurs when there is a cyclic dependency between two or more threads, or processes, for some set of resources within SQL Server. Using SQL Server Profiler, you can create a trace that records, replays, and displays deadlock events for analysis. To trace deadlock events, add the Deadlock graph event class to a trace. This event class populates the TextData data column in the trace with XML data about the process and objects that are involved in the deadlock. SQL Server Profiler can extract the XML document to a deadlock XML (.xdl) file which you can view later in SQL Server Management Studio. 


Q28. Your network contains a server named SQL1 that has SQL Server 2012 installed. SQL1 contains a database name DB1 and a table named Customers. 

You add an additional server named SQL2 that runs SQL Server 2012. 

You need to create a distributed partitioned view. The solution must minimize the amount of network traffic. 

What should you do? (Each correct answer presents part of the solution. Choose all that apply.) 

A. Add SQL2 as a Distributor. 

B. Add the Customers table to SQL2. 

C. Add SQL2 as a linked server. 

D. Create the view on SQL1. 

E. Remove the Customers table from SQL1. 

F. Create the view on SQL2. 

Answer: B,C,D,F 


Q29. Topic 8) 

You plan to deploy SQL Server 2012. You must create two tables named Table1 and Table2 that will have the following specifications: 

. Table1 will contain a date column named Column1 that will contain a null value approximately 80 percent of the time. . Table2 will contain a column named Column2 that is the product of two other columns in Table2. . Both Table1 and Table2 will contain more than 1 million rows. 

You need to recommend which options must be defined for the columns. The solution must minimize the storage requirements for the tables. Which options should you recommend? To answer, drag the appropriate options to the correct column in the answer area. 

Answer: 


Q30. You need to ensure that a new execution plan is used by usp_GetOrdersByProduct each time the stored procedure runs. 

What should you do? 

A. Execute sp_help usp_GetOrdersByProduct\ 

B. Add WITH (FORCESEEK) to line 69 in usp.GetOrdersByProduct. 

C. Add WITH RECOMPILE to line 64 in usp.GetOrdersByProduct. 

D. Execute sp_recompile usp.GetOrdersByProduct'. 

Answer: