70-469 Premium Bundle

70-469 Premium Bundle

Recertification for MCSE: Data Platform Certification Exam

4.5 
(27675 ratings)
0 QuestionsPractice Tests
0 PDFPrint version
November 23, 2024Last update

Microsoft 70-469 Free Practice Questions

Q1. You need to configure security on the Product table for customer support representatives. 

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

A. Create a view called CustProduct that includes columns ProductID. ProductName, Product Description, QuantityOnHand, ProductPrice, ProductCost, and ProductSupplierID. 

B. GRANT ALL on CustProduct TO OurDomain\CustomerSupport 

C. Create a user-defined data type called CustProduct that includes columns ProductID, ProductName, Product Description, and ProductPrice. 

D. Create a view called CustProduct that includes columns ProductID, ProductName, Product Description, QuantityOnHand, and ProductPrice. 

E. GRANT SELECT on CustProduct TO OurDomain\CustomerSupport. 

F. GRANT SELECT on CustProduct TO public. 

Answer: AE 

Q2. 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 

Q3. You execute usp_SelectEmployeesByName multiple times, passing strings of varying lengths to @LastName. You discover that usp_SelectEmployeesByName uses inefficient execution plans. 

You need to update usp_SelectEmployeesByName to ensure that the most efficient execution plan is used. 

What should you add at line 31 of StoredProcedures.sql? 

A. OPTION (ROBUST PLAN) 

B. OPTION (OPTIMIZE FOR UNKNOWN) 

C. OPTION (KEEP PLAN) 

D. OPTION (KEEPFIXED PLAN) 

Answer:

Q4. You are troubleshooting an application that runs a query. The application frequently causes deadlocks. 

You need to identify which transaction causes the deadlock. 

What should you do? 

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

A. Query the sys.dm_exec_sessions dynamic management view. 

B. Query the sys.dm_exec_requests dynamic management view. 

C. Create a trace in SQL Server Profiler that contains the Deadlock graph event 

D. Create an extended events session to capture deadlock information. 

Answer:

Q5. You need to implement a solution that meets the security requirements. Which statement should you execute? 

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer:

Q6. 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:

Q7. You are testing disaster recovery procedures. 

When you attempt to restore ProductsDB to another server, you receive the following error message: "Msg 33111, Level 16, State 3, Line 5 Cannot find server certificate with thumbprint ' 

0x9D876A3468B911ElBA4CFCBF4724019B\ 

Msg 3013, Level 16, State 1, Line 5 

RESTORE DATABASE is terminating abnormally." 

You need to ensure that you can restore ProductsDB to another server. 

Which code segment should you execute on the other server? 

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer:

Q8. You administer an instance of SQL Server 2014. 

You are tasked with tuning a common set of queries. You have the results of several test executions, along with query plans. The schema and the data for all database object(s) used remain unchanged between executions. The QueryTime column is defined as a computed column that uses the GETDATE() system function. The query plans and results are shown below: You need to make an initial diagnosis of the situation, based solely on this input 

Which two statements can you make about the performance characteristics of this query? Each correct answer presents a complete solution. Choose two. 

A. The queries would perform better if the index named AccountNumber included the Name and QueryTime column. 

B. The queries would perform worse if the index named AccountNumber included the NameColumn. 

C. The queries would perform better if the index named AccountNumber included the Name column. 

D. The object Account is a table, with an index having a leading column of AccountNumber and a Clustered Index named PKAccount. 

E. The object Account is an indexed view, with an index having a leading column of AccountNumber and a Clustered Index named PKAccount. 

F. The object Account is a view, joining the Account-AccountNumber and Account.PKAccount objects together. 

Answer: BD 

Q9. You are designing your maintenance plan. 

Which command should you use only during the monthly maintenance window? 

A. DBCC INDEXDEFRAG (ProdDB, SalesOrderDetail, SODIndex) 

B. ALTER INDEX SODIndex ON SalesOrderDetail REORGANIZE 

C. ALTER INDEX SODIndex ON SalesOrderDetail REBUILD 

D. ALTER INDEX SODIndex ON SalesOrderDetail REBUILD WITH (ONLINE * ON) 

Answer:

Q10. You need to provide referential integrity between the Sessions table and Speakers table. Which code segment should you add at line 47 of Tables.sql? 

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer:

Q11. You need to implement a solution that meets the data recovery requirements. You update each stored procedure to accept a parameter named @transactionID. What should you add next to the beginning of each stored procedure? 

A. SAVE TRANSACTION WITH MARK @transactionID 

B. ROLLBACK DISTRIBUTED TRANSACTION @transactionID 

C. BEGIN TRANSACTION WITH MARK @transactionID 

D. COMMIT TRANSACTION @transactionID 

Answer:

Q12. You have a database named Database1. Database1 has two stored procedures named Proc1 and Proc2 and a table named Table1. Table1 has millions of rows. 

Proc1 updates data in Table1. Proc2 reads data from Table1. 

You discover that when Proc1 is executed to update more than 4,000 rows, Proc2 is blocked. The block affects all rows, including those that are not being updated by Proc1. 

You need to ensure that when Proc1 is executing, Proc2 can access the data in Table1 that Proc1 is not updating. 

What should you change Proc1 to do? 

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

A. Update less than 4,000 rows simultaneously. 

B. Use the PAGLOCK table hint. 

C. Wait for Proc2 to complete. 

D. Use the ROWLOCK table hint. 

Answer:

Q13. You have two SQL Server instances named SQLDev and SQLProd that have access to various storage media. 

You plan to synchronize SQLDev and SQLProd. 

You need to recommend a solution that meets the following requirements: 

The database schemas must be synchronized from SQLDev to SQLProd. The database on SQLDev must be deployed to SQLProd by using a package. The package must support being deployed to Windows Azure SQL Database. 

What should you recommend? 

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

A. A database snapshot 

B. SQL Server Integration Services (SSIS) 

C. Change data capture 

D. A data-tier application 

Answer:

Q14. You need to create the object used by the parameter of usp_UpdateEmployeeName. 

Which code segment should you use? 

A. CREATE XML SCHEMA COLLECTION EmployeesInfo 

B. CREATE TYPE EmployeesInfo AS Table 

C. CREATE SCHEMA EmployeesInfo 

D. CREATE TABLE EmployeesInfo 

Answer:

Q15. You are testing disaster recovery procedures. 

You attempt to restore DB1 to a different server and you receive the following error message: "Msg 33111. Level 16, State 3, Line 1 Cannot find server certificate with thumbprint ,0xA694FBEA88C9354E5E2567C30A2A69E8FB4C44A9\ Msg 3013, Level 16, State 1, Line 1 RESTORE DATABASE is terminating abnormally." 

You need to ensure that you can restore DB1 to a different server. 

Which code segment should you execute? 

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer:

Q16. You have a server named Server1 that has 2 processors. 

You plan to deploy multiple instances of SQL Server 2014 to Server1. Each instance will have multiple databases. 

You need to recommend a method to allocate processor time to each database. 

What should you include in the recommendation? 

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

A. Resource Governor 

B. Max Degree of Parallelism 

C. Windows System Resource Manager (WSRM) 

D. Processor affinity 

Answer:

START 70-469 EXAM