Recently Updated 70-464 Dumps from PassLeader with VCE and PDF (Question 46 – Question 60)

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

Case Study 1: Scenario 1 (Question 46 ~ Question 57)
Application Information
You have two servers named SQL1 and SQL2 that have SQL Server 2012 installed. You have an application that is used to schedule and manage conferences. Users report that the application has many errors and is very slow. You are updating the application to resolve the issues. You plan to create a new database on SQL1 to support the application. A junior database administrator has created all the scripts that will be used to create the database. The script that you plan to use to create the tables for the new database is shown in Tables.sql. The script that you plan to use to create the stored procedures for the new database is shown in StoredProcedures.sql. The script that you plan to use to create the indexes for the new database is shown in Indexes.sql. (Line numbers are included for reference only.) A database named DB2 resides on SQL2. DB2 has a table named SpeakerAudit that will audit changes to a table named Speakers. A stored procedure named usp_UpdateSpeakersName will be executed only by other stored procedures. The stored procedures executing usp_UpdateSpeakersName will always handle transactions. A stored procedure named usp_SelectSpeakersByName will be used to retrieve the names of speakers. Usp_SelectSpeakersByName can read uncommitted data. A stored procedure named usp_GetFutureSessions will be used to retrieve sessions that will occur in the future.

Procedures.sql
passleader-70-464-dumps-01
passleader-70-464-dumps-02
Indexes.sql
passleader-70-464-dumps-03
Tables.sql
passleader-70-464-dumps-04

QUESTION 46
You are evaluating the index design. You need to recommend a change to Indexes.sql that will minimize the amount of time it takes for usp_AttendeesReport to execute. The solution must minimize the amount of database fragmentation. Which line of code should you use to replace line 12 of Indexes.sql?

A.    (LastName);
B.    (FirstName) INCLUDE (LastName);
C.    (LastName, FirstName);
D.    (LastName) INCLUDE (FirstName);

Answer: C

QUESTION 47
You need to recommend a solution to ensure that SQL1 supports the auditing requirements of usp_UpdateSpeakerName. What should you include in the recommendation?

A.    The Distributed Transaction Coordinator (DTC)
B.    Transactional replication
C.    Change data capture
D.    Change tracking

Answer: A

QUESTION 48
You need to modify usp_SelectSpeakersByName to support server-side paging. The solution must minimize the amount of development effort required. What should you add to usp_SelectSpeakersByName?

A.    an OFFSET-FETCH clause
B.    a table variable
C.    the ROWNUMBER keyword
D.    a recursive common table expression

Answer: A
Explanation:
http://www.mssqltips.com/sqlservertip/2696/comparing-performance-for-different-sql-server-paging-methods/
http://msdn.microsoft.com/en-us/library/ms188385.aspx
http://msdn.microsoft.com/en-us/library/ms180152.aspx
http://msdn.microsoft.com/en-us/library/ms186243.aspx
http://msdn.microsoft.com/en-us/library/ms186734.aspx
http://www.sqlserver-training.com/how-to-use-offset-fetch-option-in-sql-server-order-by-clause/
http://www.sqlservercentral.com/blogs/juggling_with_sql/2011/11/30/using-offset-and-fetch/

QUESTION 49
You are evaluating the table design. You need to recommend a change to Tables.sql that reduces the amount of time it takes for usp_AttendeesReport to execute. What should you add at line 14 of Tables.sql?
passleader-70-464-dumps-491

A.    Option A
B.    Option B
C.    Option C
D.    Option D

Answer: D
Explanation:
http://msdn.microsoft.com/en-us/library/ms188300.aspx
http://msdn.microsoft.com/en-us/library/ms191250.aspx

QUESTION 50
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?
passleader-70-464-dumps-501

A.    Option A
B.    Option B
C.    Option C
D.    Option D

Answer: C
Explanation:
http://msdn.microsoft.com/en-us/library/ms189049.aspx
http://msdn.microsoft.com/en-us/library/ms179610.aspx
http://msdn.microsoft.com/en-us/library/ff878370.aspx

QUESTION 51
You need to add a new column named Confirmed to the Attendees table. The solution must meet the following requirements:
– Have a default value of false.
– Minimize the amount of disk space used.
Which code block should you use?
passleader-70-464-dumps-511

A.    Option A
B.    Option B
C.    Option C
D.    Option D

Answer: B
Explanation:
http://msdn.microsoft.com/en-us/library/ms177603.aspx

QUESTION 52
You execute usp_TestSpeakers. You discover that usp_SelectSpeakersByName uses inefficient execution plans. You need to update usp_SelectSpeakersByName to ensure that the most efficient execution plan is used. What should you add at line 30 of Procedures.sql?

A.    OPTION (FCRCESCAN)
B.    OPTION (FCRCESEEX)
C.    OPTION (OPTIMIZE FOR UNKNOWN)
D.    OPTION (OPTIMIZE FOR (@lastName = ‘Anderson’))

Answer: C
Explanation:
http://msdn.microsoft.com/en-us/library/ms181714.aspx

QUESTION 53
You need to create the object used by the parameter of usp_InsertSessions. Which statement should you use?

A.    CREATEXML SCHEMA COLLECTION SessionDataTable
B.    CREATETYPE SessionDataTable AS Table
C.    CREATESCHEMA SessionDataTable
D.    CREATETABLE Sessior.EataTable

Answer: B
Explanation:
Because usp_InsertSessions is making use of the INSERT…SELECT TSQL statement.

QUESTION 54
Developers report that usp_UpdateSessionRoom periodically returns error 3960. You need to prevent the error from occurring. The solution must ensure that the stored procedure returns the original values to all of the updated rows. What should you configure in Procedures.sql?

A.    Replace line 46 with the following code:
SET TRANSACTION ISOLATION LEVEL SERIALIZABLE
B.    Replace line 46 with the following code:
SETTRANSACTIONISOLATIONLEVELREPEATABLEREAD
C.    Move the SELECT statement at line 49 to line 57
D.    Move the SET statement at line 46 to line 53

Answer: A

QUESTION 55
You discover that usp.SelectSpeakersByName executes slowly if usp_UpdateSpeakerName executes simultaneously. You need to minimize the execution time of usp.SelectSpeakersByName. The solution must not affect the performance of the other stored procedures. What should you update?

A.    Usp_UpdateSpeakerName to use the NOLOCK query hint
B.    Usp_UpdateSpeakerName to use snapshot isolation
C.    Usp_SelectSpeakersByName to use the NOLOCK query hint
D.    Usp_SelectSpeakersByName to use snapshot isolation

Answer: C
Explanation:
NOLOCK: is equivalent to READUNCOMMITTED.
READUNCOMMITTED: specifies that dirty reads are allowed.

QUESTION 56
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.)
passleader-70-464-dumps-561

A.    Option A
B.    Option B
C.    Option C
D.    Option D
E.    Option E
F.    Option F

Answer: BE
Explanation:
Future delivery dates.

QUESTION 57
You need to ensure that if any of the statements in usp_UpdateSpeakerName return an error message, all of the changes executed by usp_UpdateSpeakerName are not committed to the database. What should you do in Procedures.sql? (Each correct answer presents part of the solution. Choose all that apply.)
passleader-70-464-dumps-571

A.    Option A
B.    Option B
C.    Option C
D.    Option D
E.    Option E

Answer: BD

Case Study 2: Scenario 2 (Question 58 ~ Question 68)
All Information
Your company receives invoices in XML format from customers. Currently, the invoices are stored as files and processed by a desktop application. The application has several performance and security issues. The application is being migrated to a SQL Server-based solution. A schema named InvoiceSchema has been created for the invoices xml. The data in the invoices is sometimes incomplete. The incomplete data must be stored and processed as-is. Users cannot filter the data provided through views. You are designing a SQL Server database named DB1 that will be used to receive, process, and securely store the invoice data. A third-party Microsoft .NET Framework component will be purchased to perform tax calculations. The third-party tax component will be provided as a DLL file named Treytax.dll and a source code file named Amortize.cs. The component will expose a class named TreyResearch and a method named Amortize(). The files are located in c:\temp\. The following graphic shows the planned tables:
passleader-70-464-dumps-05
You have a sequence named Accounting.InvoiceID_Seq. You plan to create two certificates named CERT1 and CERT2. You will create CERT1 in master. You will create CERT2 in DB1. You have a legacy application that requires the ability to generate dynamic T-SQL statements against DB1. A sample of the queries generated by the legacy application appears in Legacy.sql.
Application Requirements
The planned database has the following requirements:
– All stored procedures must be signed.
– The original XML invoices must be stored in the database.
– An XML schema must be used to validate the invoice data.
– Dynamic T-SQL statements must be converted to stored procedures.
– Access to the .NET Framework tax components must be available to T-SQL objects.
– Columns must be defined by using data types that minimize the amount of space used by each table.
– Invoices stored in the InvoiceStatus table must refer to an invoice by the same identifier used by the Invoice table.
– To protect against the theft of backup disks, invoice data must be protected by using the highest level of encryption.
– The solution must provide a table-valued function that provides users with the ability to filter invoices by customer.
– Indexes must be optimized periodically based on their fragmentation by using the minimum amount of administrative effort.
Usp_InsertInvoices.sql
passleader-70-464-dumps-06
Invoices.xml
All customer IDs are 11 digits. The first three digits of a customer ID represent the customer’s country. The remaining eight digits are the customer’s account number. The following is a sample of a customer invoice in XML format:
passleader-70-464-dumps-07
InvoiceByCustomer.sql
passleader-70-464-dumps-08
Legacy.sql
passleader-70-464-dumps-09
CountryFromID.sql
passleader-70-464-dumps-10
IndexManagement.sql
passleader-70-464-dumps-11

QUESTION 58
You need to modify InsertInvoice to comply with the application requirements. Which code segment should you execute?

A.    OPEN CERT1;
ALTER PROCEDURE Accounting.usp_AuthPayment
WITH ENCRYPTION;
CLOSE CERT1;
B.    OPEN CERT2;
ALTER PROCEDURE Accounting,usp_AuthPayment
WITH ENCRYPTION;
CLOSE CERT2;
C.    ADD SIGNATURE TO Accounting.usp_AuthPayment
BY CERTIFICATE CERT1;
D.    ADD SIGNATURE TO Accounting.usp_AuthPayment
BY CERTIFICATE CERT2;

Answer: D
Explanation:
http://msdn.microsoft.com/en-us/library/bb669102.aspx

QUESTION 59
Which data type should you use for CustomerID?

A.    varchar(11)
B.    bigint
C.    nvarchar(11)
D.    char(11)

Answer: D
Explanation:
http://msdn.microsoft.com/en-us/library/ms176089.aspx
http://msdn.microsoft.com/en-us/library/ms187745.aspx

QUESTION 60
You need to modify the function in CountryFromlD.sql to ensure that the country name is returned instead of the country ID. Which line of code should you modify in CountryFromlD.sql?

A.    06
B.    04
C.    19
D.    05

Answer: C
Explanation:
http://msdn.microsoft.com/en-us/library/ms186755.aspx
http://msdn.microsoft.com/en-us/library/ms191320.aspx


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