Braindump2go Free Exam Dumps with PDF and VCE Collection
https://www.mcitpdump.com/one-year-free-updation-for-exam-microsoft-70-464-dumps-braindump2go-ensure-you-100-passing-exam-70-464-41-50.html
Export date: Thu Mar 28 8:49:20 2024 / +0000 GMT

One Year Free Updation for Exam Microsoft 70-464 Dumps - Braindump2go Ensure You 100% Passing Exam 70-464 (41-50)


Braindump2go New Published Microsoft 70-464 Dumps PDF Contanins the latest questions from Microsoft Exam Center! 100% Certification got guaranteed!

Vendor: Microsoft
Exam Code: 70-464
Exam Name: Developing Microsoft SQL Server 2014 Databases Exam

19

QUESTION 41
Drag and Drop Question
You are planning two stored procedures named SProc1 and SProc2.
You identify the following requirements:
- SProc1 must return a table.
- SProc2 must return a scalar value.
You need to identify which option must be implemented for each stored procedure to return the desired data.
Which options should you identify? To answer, drag the appropriate option to the correct requirement in the answer area. (Answer choices may be used once, more than once, or not at all.)

wps1CBE.tmp_thumb

Answer:

wps38F6.tmp_thumb


QUESTION 42
You have a SQL Server 2012 instance that hosts a single-user database.
The database does not contain user-created stored procedures or user-created functions.
You need to minimize the amount of memory used for query plan caching.
Which advanced server option should you modify?

A.    Enable Contained Databases
B.    Allow Triggers to Fire Others
C.    Optimize for Ad hoc Workloads
D.    Scan for Startup Procs

Answer: C

QUESTION 43
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.5 GB.
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.

wps529F.tmp_thumb

Answer:

wps663F.tmp_thumb


QUESTION 44
Drag and Drop Question
You have a database named database1.
Each table in database1 has one index per column.
Users often report that creating items takes a long time.
You need to perform the following maintenance tasks:
- Identify unused indexes.
- Identify indexes that need to be defragmented.
What should you use? To answer, drag the appropriate function to the correct management task in the answer area. (Answer choices may be used once, more than once, or not at all.)

wps8101.tmp_thumb

Answer:

wps9E61.tmp_thumb


QUESTION 45
You execute the following code.
You need to reduce the amount of time it takes to execute the query.
What shoul

wpsB194.tmp_thumb

you do?


A.    Change SUBSTRING (JobTitle, l, l) = 'c' to LEFT(JobTitle,1) = 'c'.
B.    Change SUBSTRING(JobTitle, l, l) = 'c' to JobTitle LIKE 'c%
C.    Partition the table and use the JobTitle column for the partition scheme.
D.    Replace IX_Employees with a clustered index.

Answer: B

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

wpsD27D.tmp_thumb

wpsBEB1.tmp_thumb

Indexes.sql

wps48E7.tmp_thumb

Tables.sql

wps6657.tmp_thumb


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/ 1
http://msdn.microsoft.com/en-us/library/ms188385.aspx 2
http://msdn.microsoft.com/en-us/library/ms180152.aspx 3
http://msdn.microsoft.com/en-us/library/ms186243.aspx 4
http://msdn.microsoft.com/en-us/library/ms186734.aspx 5
http://www.sqlserver-training.com/how-to-use-offset-fetch-option-in-sql-server-order-by-clause/- 6
http://www.sqlservercentral.com/blogs/juggling_with_sql/2011/11/30/using-offset-and-fetch/ 7

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?

wps6657.tmp[4]_thumb


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

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

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?

wpsA470.tmp_thumb


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

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


Braindump2go Regular Updates of Microsoft 70-464 Preparation Materials Exam Dumps, with Accurate Answers, Keeps the Members One Step Ahead in the Real 70-464 Exam. Field Experts with more than 10 Years Experience in Certification Field work with us.

15

http://www.braindump2go.com/70-464.html

Links:
  1. http://www.mssqltips.com/sqlservertip/2696/compari ng-performance-for-different-sql-server-paging-met hods/
  2. http://msdn.microsoft.com/en-us/library/ms188385.a spx
  3. http://msdn.microsoft.com/en-us/library/ms180152.a spx
  4. http://msdn.microsoft.com/en-us/library/ms186243.a spx
  5. http://msdn.microsoft.com/en-us/library/ms186734.a spx
  6. http://www.sqlserver-training.com/how-to-use-offse t-fetch-option-in-sql-server-order-by-clause/-
  7. http://www.sqlservercentral.com/blogs/juggling_wit h_sql/2011/11/30/using-offset-and-fetch/
  8. http://msdn.microsoft.com/en-us/library/ms188300.a spx
  9. http://msdn.microsoft.com/en-us/library/ms191250.a spx
  10. http://msdn.microsoft.com/en-us/library/ms189049.a spx
  11. http://msdn.microsoft.com/en-us/library/ms179610.a spx
Post date: 2015-03-02 08:53:49
Post date GMT: 2015-03-02 08:53:49

Post modified date: 2015-03-02 08:53:49
Post modified date GMT: 2015-03-02 08:53:49

Export date: Thu Mar 28 8:49:20 2024 / +0000 GMT
This page was exported from Braindump2go Free Exam Dumps with PDF and VCE Collection [ https://www.mcitpdump.com ]
Export of Post and Page has been powered by [ Universal Post Manager ] plugin from www.ProfProjects.com