70-469 Exam - Recertification for MCSE: Data Platform

certleader.com

Q1. You need to modify the usp_DetectSuspiciousActivity stored procedure. 

Which two actions should you perform? Each correct answer presents part of the solution. Choose two. 

A. Option A 

B. Option B 

C. Option C 

D. Option D 

E. Option E 

F. Option F 

Answer: DE 

Q2. You have a SQL Server 2014 environment That contains 20 servers. 

The corporate security policy states that all SQL Server 2014 instances must meet specific security standards. 

You need to recommend a management strategy for the SQL Server 2014 servers. 

What should you include in the recommendation? 

More than one answer choice may achieve the goal. Select the BEST answer. 

A. Multi server jobs 

B. Policy-Based Management 

C. Common criteria compliance 

D. Maintenance plans 

Answer:

Q3. You plan to migrate an instance of SQL Server 2008 to a new installation of SQL Server 2012. 

You need to migrate alerts and e-mail notifications. 

Which system stored procedures should you use? (Each correct answer presents part of the solution. Choose all that apply.) 

A. sp_syspolicy_create_job 

B. sp_add_operator 

C. sp_audit_write 

D. sp_add_alert 

Answer: BC 

Q4. You use SQL Server 2012 to store data used by an e-commerce application. 

You develop a stored procedure named sp1. Sp1 is used to read the price of all the products sold on the e-commerce site. 

You need to ensure that sp1 can read data even while another transaction is modifying the price of a product. Sp1 must only read committed data. 

Which transaction isolation level should you use in sp1? 

A. Serializable 

B. Snapshot 

C. Repeatable read 

D. Read committed 

Answer:

Q5. You execute the following code: 

The execution plan for the query is shown in the exhibit. (Click the Exhibit button.) 

You need to prevent the key lookup. 

What should you modify? 

More than one answer choice may achieve the goal. Select the BEST answer. 

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer:

Q6. You have a database that uses the following management views: 

Sys.dm_os_volume_stats 

Sys.dm_db_partition_stats 

Sys.dm_db_file_space_usage 

Sys.fulltext_indexes 

You plan to migrate the database to Microsoft SQL Azure. 

You need to identify which view can be used in SQL Azure. 

Which view should you identify? 

A. sys.fulltext_indexes 

B. sys.dm_db_file_space_usage 

C. sys.dm_os_volume_stats 

D. sys.dm_db_partition_stats 

Answer:

Q7. You need to recommend a solution that resolves the missing data issue. The solution must minimize the amount of development effort. 

What should you recommend? 

A. Denormalize the Products table. 

B. Denormalize the OrderDetails table. 

C. Normalize the OrderDetails table. 

D. Normalize the Products table. 

Answer:

Q8. You need to create the object used by the parameter of usp_InsertSessions. 

Which statement should you use? 

A. CREATE SCHEMA SessionDataTable 

B. CREATE TYPE SessionDataTable AS Table 

C. CREATE TABLE SessionDataTable 

D. CREATE XML SCHEMA COLLECTION SessionDataTable 

Answer:

Q9. You administer a SQL Server 2014 instance. 

Users report that the SQL Server has seemed slow today. A large database was being restored for much of the day, which could be causing issues. 

You want to write a query of the system views that will report the following: 

Number of users that have a connection to the server 

Whether a user's connection is active 

Whether any connections are blocked 

What queries are being executed 

Whether the database restore is still executing and, if it is, what percentage of the restore is complete. 

Which system objects should you use in your query to best achieve this task? 

A. sys.dm_exec_requests, sys.dm_exec_sessions, sys.objects 

B. sys.dm_exec_sessions, sys.dm_exec_query_stats, sys.dm_exec_query_text,sys.objects 

C. sys.sysprocesses, sys.dm_exec_query_text, sys.objects 

D. sys.dm_exec_requests, sys.dm_exec_sessions, sys.dm_exec_query_text 

Answer:

Q10. You need to recommend a solution to improve the performance of usp.UpdateInventory. The solution must minimize the amount of development effort. 

What should you include in the recommendation? 

A. A table variable 

B. A common table expression 

C. A subquery 

D. A cursor 

Answer: