getcertified4sure.com

Top 10 tutorials 70-469 for IT candidates (91 to 100)




Act now and download your Microsoft 70-469 test today! Do not waste time for the worthless Microsoft 70-469 tutorials. Download Update Microsoft Recertification for MCSE: Data Platform exam with real questions and answers and begin to learn Microsoft 70-469 with a classic professional.

2021 Jan 70-469 vce

Q91. You have a text file that contains an XML Schema Definition (XSD). 

You have a table named Schema1.Table1. 

You have a stored procedure named Schema1.Proc1 that accepts an XML parameter named Param1. 

You need to store validated XML data in Schema1.Table1. The solution must ensure that only valid XML data is accepted by Param1. What should you do? (Each correct answer presents part of the solution. Choose all that 

apply.) 

A. Define an XML column in Table1 by using an XML schema collection. 

B. Create an XML schema collection in the database from the text file. 

C. Declare Param1 var1 as type XML and associate the variable to the XML schema collection. 

D. use the modify method to insert the XML schema into each row of the XML column in Table1. 

Answer: ABD 


Q92. You have a database that contains a user-defined function named Schema1.Udf1 and two tables named Schema1.Table1 and Schema1.Table2. 

Schema1.Table1 has 1 million rows. The schema for Schema1.Table1 is configured as shown in the following table. 

Schema1.Udf1 was defined by using the following code: 

You need to write a query that will contain the following columns: 

Country CountryID CustomerName 

The solution must meet the following requirements: 

Rows must be returned only if the function returns data. 

The amount of time it takes the query to execute must be minimized. 

Which query should you use? 

A. Option A 

B. Option B 

C. Option C 

D. Option D 

Answer:


Q93. 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: BE 


Q94. You have a SQL Server 2014 instance named SQL1. 

SQL1 creates error events in the Windows Application event log. 

You need to recommend a solution that will run an application when SQL1 logs a specific error in the Application log. 

Which SQL elements should you include in the recommendation? (Each correct answer presents part of the solution. Choose all that apply.) 

A. A policy 

B. A maintenance plan 

C. An alert 

D. A job 

E. A trigger 

Answer: DE 


Q95. You have a Microsoft SQL Azure database that contains a table named Customers. 

You have a table-valued function named TopCustomers that returns a list of all the customers that have purchased items during the last 12 months. The ID of the customer is passed as an argument to the TopCustomers function. 

You need to create a query that returns a list of all the Customer names and the purchase dates. 

The solution must return only customers that have purchased an item during the last 12 months. 

What should you add to the query? 

A. OUTER JOIN 

B. CROSS JOIN 

C. CROSS APPLY 

D. OUTER APPLY 

Answer:


Refresh 70-469 exam question:

Q96. You use SQL Azure to store data used by an e-commerce application. 

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

You need to ensure that other transactions are blocked from updating product data while sp1 is executing. 

Which transaction isolation level should you use in sp1? 

A. Repeatable read 

B. Read committed 

C. Serializable 

D. Snapshot 

Answer:


Q97. During performance testing, you discover that database INSERT operations against the Inventory table are slow. 

You need to recommend a solution to reduce the amount of time it takes to complete the INSERT operations. 

What should you recommend? 

A. Partition the nonclustered index. 

B. Partition the Inventory table.snapshot replication 

C. Create a column store index.Master Data Services 

D. Drop the clustered index.change data capture 

Answer:


Q98. You need to recommend a solution to ensure that SQL1 supports the auditing requirements of usp_UpdateEmployeeName. 

What should you include in the recommendation? 

A. Change data capture 

B. Change tracking 

C. Transactional replication 

D. The Distributed Transaction Coordinator (DTC) 

Answer:


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


Q100. You have a database named DB1. 

You plan to create a stored procedure that will insert rows into three different tables. Each insert must use the same identifying value for each table, but the value must increase from one invocation of the stored procedure to the next. 

Occasionally, the identifying value must be reset to its initial value. 

You need to design a mechanism to hold the identifying values for the stored procedure to use. 

What should you do? 

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

A. Create a sequence object that holds the next value in the sequence. Retrieve the next value by using the stored procedure. Reset the value by using an ALTER SEQUENCE statement as needed. 

B. Create a sequence object that holds the next value in the sequence. Retrieve the next value by using the stored procedure. Increment the sequence object to the next value by using an ALTER SEQUENCE statement. Reset the value as needed by using a different ALTER SEQUENCE statement. 

C. Create a fourth table that holds the next value in the sequence. At the end each transaction, update the value by using the stored procedure. Reset the value as needed by using an UPDATE statement. 

D. Create an identity column in each of the three tables. Use the same seed and the same increment for each table. Insert new rows into the tables by using the stored procedure. Use the DBCC CHECKIDENT command to reset the columns as needed. 

Answer: