getcertified4sure.com

How Does Exambible Microsoft 70-469 exam fees Work?




Proper study guides for Most up-to-date Microsoft Recertification for MCSE: Data Platform certified begins with Microsoft 70-469 preparation products which designed to deliver the Virtual 70-469 questions by making you pass the 70-469 test at your first time. Try the free 70-469 demo right now.

Q121. You have a SQL Server 2012 database named DB1 that is accessed by 650 concurrent users. 

You need to log all of the queries to DB1 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 SQL Server Agent job that retrieves information from the sys.dm_tran_session_transactions dynamic management views 

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

D. A script that enables trace flags 

Answer:


Q122. You need to recommend a solution to ensure that USP_4 adheres to the security requirements. 

What should you include in the recommendation? 

A. Enable SQL Server Audit. 

B. Enable trace flags. 

C. Configure data manipulation language (DML) triggers. 

D. Enable C2 audit tracing. 

Answer:


Q123. You need to recommend a disk monitoring solution that meets the business requirements. 

What should you include in the recommendation? 

A. An audit 

B. A dynamic management view 

C. A maintenance plan 

D. A SQL Server Agent alert 

Answer:


Q124. You plan to modify a stored procedure to use temporary data. 

The stored procedure must meet the following requirements: 

. Favor physical memory when physical memory is available. 

. Be able to roll back changes to the temporary data. 

You need to recommend which object to add to the stored procedure. 

Which T-SQL command should you recommend? 

A. CREATE TABLE ##Table... 

B. CREATE TABLE Table... 

C. CREATE VIEW Table... 

D. CREATE PARTITION SCHEME Table... 

E. DECLARE TABLE @ Table... 

Answer:


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


Q126. You plan to create a new table that has the following requirements: 

Uses a GUID data type as the primary key. 

Uses a clustered index as the primary key. 

Minimizes fragmentation. 

You need to recommend which option to include in the CREATE statement. 

Which option should you include? 

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

A. NEWID 

B. @@IDENTITY 

C. NEWSEQUENTIALID 

D. IDENTITY 

Answer:


Q127. You have a database named Database1. You execute the following code: 

You have the following query. (Line numbers are included for reference only.) 

Users report that the query takes a long time to complete. 

You create a full-text index for the Notes column. 

You need to recommend changes to the query to reduce the amount of time it takes for the query to complete. 

Which code segment should you use to replace line 03? 

A. WHERE FREETEXT(notes, '%call%') AND 

B. INNER JOIN FREETEXTTABLE(dbo.table1, notes, 'call') AS t2 ON dbo.table1.ID = t2.key WHERE 

C. WHERE CONTAINS(notes, 'call*') AND 

D. WHERE CONTAINS(notes,*%call%'> AND 

Answer:


Q128. You have a SQL Server 2012 database named Database1. 

Database1 has a table named Customers. Customers contains more than 1 million rows. 

The database has a stored procedure that was created by using the following script: 

You need to ensure that up_customers returns rows when the following statement is executed: 

EXECUTE up_customers'1,2,3,4,5' 

What should you do? 

A. Update @CustcmerTypelist to use the int data type. 

B. Convert @CustomerTypeList to a table variable. 

C. Convert @CustomerTypeList to an XML variable. 

D. Update @CustomerTypeList to use the XML data type. 

Answer:


Q129. You attempt to process an invoice by using usp_InsertInvoice.sql and you receive the following error message: "Msg 515, Level 16, State 2, Procedure usp_InsertInvoice, Line 

Cannot insert the value NULL into column 'InvoiceDate', table 'DB1.Accounting.Invoices' column does not allow nulls. INSERT fails." 

You need to modify usp_InsertInvoice.sql to resolve the error. 

How should you modify the INSERT statement? 

A. InvoiceDate varchar(l00) 'InvoiceDate', 

B. InvoiceDate varchar(100) 'Customer/InvoiceDate', ' 

C. InvoiceDate date '@InvoiceDate', 

D. InvoiceDate date 'Customer/@InvoiceDate', 

Answer:


Q130. You have a Microsoft SQL Azure database named DBAzurel. DBAzurel contains a table named Orders that stores sales data. 

Each order has a sales total that can only be discovered by querying multiple tables. 

You need to ensure that the value of the sales total is returned by executing a query on Orders. 

What should you create? 

A. A calculated column that uses a scalar function 

B. A trigger that uses a table-valued function 

C. A calculated column that uses a table-valued function 

D. A trigger that uses a ranking function 

Answer: