Free Preview Premium PassLeader 70-464 Exam Dumps in VCE and PDF (Question 106 – Question 120)

Valid 70-464 Dumps shared by PassLeader for Helping Passing 70-464 Exam! PassLeader now offer the newest 70-464 VCE dumps and 70-464 PDF dumps, the PassLeader 70-464 exam questions have been updated and ANSWERS have been corrected, get the newest PassLeader 70-464 dumps with VCE and PDF here: http://www.passleader.com/70-464.html (191 Q&As Dumps)

BTW, DOWNLOAD part of PassLeader 70-464 dumps from Cloud Storage: https://drive.google.com/open?id=0B-ob6L_QjGLpfkFyU2lhYkdqNDdDa1JBZWhDTzNka1k0NmtOeXdYVXVZaHR4eElZZHZNTE0

QUESTION 106
You need to implement a solution that addresses the bulk insert requirements. What should you add to line 08 in usp_ImportOrderDetails?

A.    LASTROW=0.
B.    BATCHSIE=0.
C.    BATCHSIZE=1000.
D.    LASTROW=1000.

Answer: C

QUESTION 107
You discover that the usp_GetOrdersAndItems stored procedures takes a long time to complete while usp_AddOrder or usp_AddXMLOrder run. You need to ensure that usp_GetOrdersAndItems completes as quickly as possible. What should you do? (Each correct answer presents part of the solution. Choose all that apply.)

A.    Set the isolation level of the usp_GetOrdersAndItems stored procedure to SERIALIZABLE.
B.    Execute the ALTER DATABASE Sales SET ALLOW_SNAPSHOT_ISOLATION ON statement.
C.    Set the isolation level of the usp_AddOrder stored procedure to SERIALIZABLE.
D.    Set the isolation level of the usp_GetOrdersAndItems stored procedure to SNAPSHOT.
E.    Set the isolation level of the usp_AddOrder stored procedure to SNAPSHOT.
F.    Execute the ALTER DATABASE Sales SET ALLOWSNAPSHOTISOLATION OFF statement.

Answer: BD

QUESTION 108
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 originalOrdervarchar(max);
D.    ALTER Orders
ADD originalOrdervarbinary(max);

Answer: D

QUESTION 109
You need to modify usp.GetOrdersAndItems to ensure that an order is NOT retrieved by usp_GetOrdersAndItems while the order is being updated. What should you add to usp.GetOrdersAndItems?

A.    Add WITH (NOLOCK) to the end of line 47.
B.    Add SET TRANSACTION ISOLATION LEVEL READ COMMITTED to line 44.
C.    Add SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED to line 44.
D.    Add WITH (READPAST) to the end of line 47.

Answer: B

QUESTION 110
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: B

QUESTION 111
Drag and Drop Question
You have a SQL Server 2012 database named Database1. Database1 has a data file named Database1_data.mdf and a transaction log named Database1jog.ldf. Database1_data.mdf is 1.5GB. Database1jog.ldf is 1.5 terabytes. A full backup of Database1 is performed every day. You need to reduce the size of the log file. The solution must ensure that you can perform transaction log backups in the future. Which code segment should you execute? To answer, move the appropriate code segments from the list of code segments to the answer area and arrange them in the correct order.
passleader-70-464-dumps-1111

Answer:
passleader-70-464-dumps-1112

QUESTION 112
Drag and Drop Question
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.
passleader-70-464-dumps-1121

Answer:
passleader-70-464-dumps-1122

QUESTION 113
Drag and Drop Question
You are designing a database for a university. The database will contain two tables named Classes and StudentGrades that have the following specifications:
– Classes will store brochures in the XPS format.
– The brochures must be structured in folders and must be accessible by using UNC paths.
– StudentGrades must be backed up on a separate schedule than the rest of the database.
You need to identify which SQL Server technology meets the specifications of each table. Which technologies should you identify? To answer, drag the appropriate technology to the correct table in the answer area.
passleader-70-464-dumps-1131

Answer:
passleader-70-464-dumps-1132

QUESTION 114
Drag and Drop Question
You have a SQL Azure database named Database1. You need to design the schema for a table named table1. Table1 will have less than one million rows. Table1 will contain the following information for each row:
passleader-70-464-dumps-1141
The solution must minimize the amount of space used to store each row. Which data types should you recommend for each column? To answer, drag the appropriate data type to the correct column in the answer area.
passleader-70-464-dumps-1142

Answer:
passleader-70-464-dumps-1143

QUESTION 115
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.    Use the ROWLOCK table hint.
B.    Wait for Proc2 to complete.
C.    Update less than 4,000 rows simultaneously.
D.    Use the PAGLOCK table hint.

Answer: C

QUESTION 116
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.    COMMIT TRANSACTION @transaction
C.    BEGIN TRANSACTION WITH MARK @transactionID
D.    ROLLBACK DISTRIBUTED TRANSACTION @transactionID

Answer: C

QUESTION 117
You have a Microsoft SQL Azure database. You have the following stored procedure:
passleader-70-464-dumps-1171
You discover that the stored procedure periodically fails to update HR.Employees. You need to ensure that HR.Employees is always updated when up_employees executes. The solution must minimize the amount of time required for the stored procedure to execute and the number of locks held. What should you do?

A.    Add the following line of code to line 05:
SET TRANSACTION ISOLATION LEVEL SERIALIZABLE
B.    Add the following line of code to line 05:
SET TRANSACTION ISOLATION LEVEL SNAPSHOT
C.    Add the following line of code to line 13:
WITH (UPDLOCK)
D.    Add the following line of code to line 08:
WITH (UPDLOCK)

Answer: D

QUESTION 118
You need to encapsulate a T-SQL script into a reusable user-defined object. The object must meet the following requirements:
– Permit insertions into a table variable.
– Support structured exception handling.
– Prevent changes to the definition of referenced objects.
– Support the use of the APPLY operator on the output of the object.
Which type of object should you use?

A.    An inline table-valued function
B.    A multi-statement table-valued function
C.    A stored procedure
D.    A scalar user-defined function

Answer: D

QUESTION 119
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: BCDF

QUESTION 120
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
Explanation:
B: sp_add_operator
Creates an operator (notification recipient) for use with alerts and jobs.
C: sp_audit_write
Adds a user-defined audit event to the USER_DEFINED_AUDIT_GROUP. If USER_DEFINED_AUDIT_GROUP is not enabled, sp_audit_write is ignored.
Incorrect:
Not A: sp_syspolicy_create_job
No such standard stored procedure.
Not D: sp_add_alert
Creates an alert.


Get the newest PassLeader 70-464 VCE dumps here: http://www.passleader.com/70-464.html (191 Q&As Dumps)

And, DOWNLOAD the newest PassLeader 70-464 PDF dumps from Cloud Storage for free: https://drive.google.com/open?id=0B-ob6L_QjGLpfkFyU2lhYkdqNDdDa1JBZWhDTzNka1k0NmtOeXdYVXVZaHR4eElZZHZNTE0