[2016-New] Updated 70-464 Study Materials From GreatExam Free Downloading (1-20)

Good news, GreatExam has updated the 70-464 exam dumps. With all the questions and answers in your hands, you will pass the Microsoft 70-464 exam easily.

QUESTION 1
Your company has a SQL Azure subscription.
You implement a database named Database1.
Database1 has two tables named Table1 and Table2.
You create a stored procedure named sp1.Sp1 reads data from Table1 and inserts data into Table2.
A user named User1 informs you that he is unable to run sp1.
You verify that User1 has the SELECT permission on Table1 and Table2.
You need to ensure that User1 can run sp1.
The solution must minimize the number of permissions assigned to User1.
What should you do?

A.    Grant User1 the INSERT permission on Table2.
B.    Add User1 to the db_datawriter role.
C.    Change sp1 to run as the sa user.
D.    Grant User1 the EXECUTE permission on sp1.

 

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

QUESTION 2
You use SQL Server 2012 to maintain the data used by the applications at your company.
You plan to create a table named Table1 by using the following statement. (Line numbers are included for reference only.)
You need to ensure that Table1 contains a column named UserName.
The UserName column will:
– Store string values in any language.
– Accept a maximum of 200 characters.
– Be case-insensitive and accent-insensitive
Which code segment should you add at line 03?
21

A.    UserName nvarchar(200) COLLATE Latin1_General_CS_AS NOT NULL,
B.    UserName varchar(200) COLLATE Latin1_General_CI_AI NOT NULL,
C.    UserName varchar(200) COLLATE Latin 1_General_CS_AS NOT NULL,
D.    UserName nvarchar(200) COLLATE Latin1_General_CI_AI NOT NULL,

Answer: D
Explanation:
A lot of the questions had a minor change that you need to pay attention to.
Otherwise if you simply remember the answer, you will get it wrong.
Example 1. a question that had the table column specifications of “English” would normally result in the answer being “varchar”, but the question now changed to “international”, so you need to know that the answer is “nvarchar”.
Example 2. “case sensitive, accent sensitive” would usually be “CS_AS”, but now the question changed to “case insensitive, accent sensitive” so its “CI_AS”.
So while to the untrained eye, the questions appear the same.
They are only 99% the same, but the specifications may have changed slightly.
So pay attention.
http://msdn.microsoft.com/en-us/library/ms184391.aspx
http://msdn.microsoft.com/en-us/library/ms143726.aspx
http://msdn.microsoft.com/en-us/library/ff848763.aspx

QUESTION 3
Drag and Drop Question
You have a table named Table1 that contains 1 million rows.
Table1 contains a column named Column1 that stores sensitive information.
Column1 uses the nvarchar (16) data type.
You have a certificate named Cert1.
You need to replace Column1 with a new encrypted column named Column2 that uses one-way hashing.
Which code segment should you execute before you remove Column1? To answer, move the appropriate code segments from the list of code segments to the answer area and arrange them in the correct order.
31
Answer:
32

QUESTION 4
You review a query that runs slowly.
The query accesses data in a table named Schemal.Table1.
The following is the relevant portion of the execution plan for the query:
You need to create the missing index.
Which code segment should you execute?
41

A.    CREATE NCNCLUSTERED INDEX 1X1 on Schema1.Table1 (Column1) INCLUDE (Column4)
B.    CREATE NCNCLUSTERED INDEX 1X1 on Schema1.Table1 (Column1)
C.    CREATE NONCLUSTERED INDEX 1X1 on Schema1.Table1 (Column1, Column2, Column3)
INCLUDE(Column4)
D.    CREATE NONCLUSTERED INDEX 1X1 on Schema1.Table1 (Column1) INCLUDE(Column4)
WHERE Column2 <> Column3

Answer: C

QUESTION 5
You are creating a table to support an application that will cache data outside of SQL Server.
The application will detect whether cached values were changed before it updates the values.
You need to create the table, and then verify that you can insert a row into the table.
Which code segment should you use?
51

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

Answer: C
Explanation:
http://msdn.microsoft.com/en-us/library/ms182776.aspx
http://msdn.microsoft.com/en-us/library/ms187942.aspx
http://msdn.microsoft.com/en-us/library/ms190348.aspx

QUESTION 6
Drag and Drop Question
You run the following code segment:
61
After you add 10,000 rows to Customers, you discover that the index is fragmented.
You need to defragment the index in the least amount of time.
Which code segment should you execute? To answer, drag the appropriate value to the correct location in the code segment in the answer area. (Answer choices may be used once, more than once, or not at all.)
62
Answer:
63

QUESTION 7
You execute the following code:
71
You need to select the task that has an IsFinished value of true from the Project that has an Id value of 1.
Which code segment should you use?
72

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

Answer: B

QUESTION 8
You execute the following code:
You need to reduce the amount of time it takes to execute the query.
What should you do?
81

A.    Replace LEFT(CustomerName ,1) = ‘a’ with CustomerName LIKE ‘a%’.
B.    Partition the table and use the CustomerName column for the partition scheme.
C.    Replace LEFT(CustomerName ,1) = ‘a’ with SUBSTRING(CustomerName ,1/1) = ‘a’.
D.    Replace IX_CustomerName with a clustered index.

Answer: A
Explanation:
http://msdn.microsoft.com/en-us/library/ms179859.aspx
http://msdn.microsoft.com/en-us/library/ms187748.aspx

QUESTION 9
You have a SQL Server 2012 database named DB1.
You have a backup device named Device1.
You discover that the log file for the database is full.
You need to ensure that DB1 can complete transactions.
The solution must not affect the chain of log sequence numbers (LSNs).
Which code segment should you execute?

A.    BACKUP LCG DB1 TO Device1 WITH COPY_ONLY
B.    BACKUP LOG DB1 TO Device1
C.    BACKUP LOG DB1 TO Device1 WITH NCRECCVERY
D.    BACKUP LOG D31 TO Device1 WITH TRUNCATE ONLY

Answer: B
Explanation:
http://msdn.microsoft.com/en-us/library/ms186865.aspx
http://msdn.microsoft.com/en-us/library/ms179478.aspx
http://msdn.microsoft.com/en-us/library/ms190925.aspx

QUESTION 10
You execute the following code:
101
The execution plan for the query is shown in the exhibit. (Click the Exhibit button.)
102
You need to prevent the key lookup.
103

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

Answer: C

QUESTION 11
You have a database for a mission-critical web application.
The database is stored on a SQL Server 2012 instance and is the only database on the instance. The application generates all T-SQL statements dynamically and does not use stored procedures.
You need to maximize the amount of memory available for data caching.
Which advanced server option should you modify?

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

Answer: D

QUESTION 12
Drag and Drop Question
You have a database that contains three tables.
The tables are configured as shown in the following table.
121
You have the following query:
122
The execution plan for the query is shown in the exhibit. (Click the Exhibit button.)
123
You need to create one index to minimize the amount of time it takes to execute the query.
What should you do? To answer, drag the appropriate columns to the correct locations in the answer area. (Answer choices may be used once, more than once, or not at all.)
124
Answer:
125

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

QUESTION 14
Drag and Drop Question
You have a table named Table1.
Table1 has 1 million rows.
Table1 has a columnstore index for a column named Column1.
You need to import data to Table1.
The solution must minimize the amount of time it takes to import the data.
What should you do? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order.
141
Answer:
142

QUESTION 15
You have a table named Rooms that contains three columns.
You execute the following query:
151
You discover the execution plan shown in the exhibit. (Click the Exhibit button.)
152
You need to recommend a solution to reduce the amount of time it takes to execute the query. What should you do? More than one answer choice may achieve the goal. Select the BEST answer.

A.    use the WITH (INDEX( Room_IX),NOLOCK) query hint.
B.    Create a clustered index for Id.
C.    Include the RoomName column and the Position column in the Room_IX index.
D.    Create a nonclustered index for RoomName, Id, and Position.

Answer: D

QUESTION 16
You have a server that has SQL Server 2012 installed.
You need to identify which parallel execution plans are running in serial.
Which tool should you use?

A.    Data Profile Viewer
B.    Database Engine Tuning Advisor
C.    Performance Monitor
D.    Extended Events

Answer: D
Explanation:
http://msdn.microsoft.com/en-us/library/bb677278.aspx
http://msdn.microsoft.com/en-us/library/bb630282.aspx
http://www.sql-server-performance.com/2006/query-execution-plan-analysis/
http://www.simple-talk.com/sql/learn-sql-server/understanding-and-using-parallelism-in-sql- server/
http://www.sqlservercentral.com/articles/SQL+Server+2012/At+last%2c+execution+plans+show+true+thread+reservations./92458/
http://sqlblog.com/blogs/paul_white/archive/2011/12/23/forcing-a-parallel-query-execution-plan.aspx
http://sqlblog.com/blogs/paul_white/archive/2012/05/02/parallel-row-goals-gone-rogue.aspx
http://msdn.microsoft.com/en-us/library/bb895310.aspx
http://msdn.microsoft.com/en-us/library/bb895313.aspx
http://msdn.microsoft.com/en-us/library/hh231122.aspx

QUESTION 17
You have a database named database1.
Database developers report that there are many deadlocks.
You need to implement a solution to monitor the deadlocks.
The solution must meet the following requirements:
– Support real-time monitoring.
– Be enabled and disabled easily.
– Support querying of the monitored data.
What should you implement? More than one answer choice may achieve the goal. Select the BEST answer.

A.    an Extended Events session
B.    a SQL Server Profiler template
C.    log errors by using trace flag 1204
D.    log errors by using trace flag 1222

Answer: A
Explanation:
http://www.sqlservercentral.com/blogs/james-sql-footprint/2012/08/12/monitor-deadlock-in- sql-2012/
http://blogs.technet.com/b/mspfe/archive/2012/06/28/how_2d00_to_2d00_monitor_2d00_deadlocks_2d00_in_2d00_sql_2d00_server.aspx

QUESTION 18
You have a SQL Server 2012 database named database1.
Database1 contains a table named OrderDetails.
For a given sales order, you need to retrieve the OrderID, Quantity, and LineTotal columns for all of the items in the OrderDetails table.
The solution must ensure that the results can be joined to other tables.
Which code segment should you execute?
181

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

Answer: A

QUESTION 19
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 status code.
You need to identify which options must be implemented to meet each stored procedure requirement.
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.)
191
Answer:
192

QUESTION 20
You have a database that contains a user-defined function named Schema1.Udf1 and two tables named Schema1.Table1 and Schemal.Table2.
Schema1.Table1 has 1 million rows.
The schema for Schema1.Table1 is configured as shown in the following table.
201
Schema1.Udf1 was defined by using the following code:
202
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?
203

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

Answer: C

Once there are some changes on 70-464 exam questions, we will update the study materials timely to make sure that our customer can download the latest edition.

http://www.greatexam.com/70-464-exam-questions.html