70-457 Dumps, Microsoft Exam

Udated Real Questions for Microsoft 70-457 Exam 100% Exam Pass Promised By Braindump2go (61-70)

New Released Braindump2go Microsoft 70-457 Dumps PDF – Questions and Answers Updated with Microsoft Official Exam Center! Visit Braindump2go and download our 70-457 Exam Questions Now, Pass 70-457 100% at your first time!

Vendor: Microsoft
Exam Code: 70-457
Exam Name: Transition Your MCTS on SQL Server 2008 to MCSA: SQL Server 2012, Part 1 Exam

110

QUESTION 61
Your database contains tables named Products and ProductsPriceLog. The Products table contains columns named ProductCode and Price. The ProductsPriceLog table contains columns named ProductCode, OldPrice, and NewPrice. The ProductsPriceLog table stores the previous price in the OldPrice column and the new price in the NewPrice column.
You need to increase the values in the Price column of all products in the Products table by 5 percent.
You also need to log the changes to the ProductsPriceLog table.
Which Transact-SQL query should you use?

A.    UPDATE Products SET Price = Price – 1.05
OUTPUT inserted.ProductCode, deleted.Price, inserted.Price
INTO ProductsPriceLog(ProductCode, OldPrice, NewPrice)
B.    UPDATE Products SET Price = Price – 1.05
OUTPUT inserted.ProductCode, inserted.Price, deleted.Price
INTO ProductsPriceLog(ProductCode, OldPrice, NewPrice)
C.    UPDATE Products SET Price = Price – 1.05
OUTPUT inserted.ProductCode, deleted.Price, inserted.Price –
INTO ProductsPriceLog(ProductCode, OldPrice, NewPrice)
D.    UPDATE Products SET Price = Price – 1.05
INSERT INTO ProductsPriceLog (ProductCode, CldPnce, NewPrice;
SELECT ProductCode, Price, Price – 1.05 FROM Products

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

QUESTION 62
You have three tables that contain data for dentists, psychiatrists, and physicians.
You create a view that is used to look up their email addresses and phone numbers.
The view has the following definition:

wpsD04E.tmp_thumb

You need to ensure that users can update only the phone numbers and email addresses by using this view. What should you do?

A.    Alter the view. Use the EXPAND VIEWS query hint along with each SELECT statement.
B.    Create an INSTEAD OF UPDATE trigger on the view.
C.    Drop the view. Re-create the view by using the SCHEMABINDING clause, and then create an
index on the view.
D.    Create an AFTER UPDATE trigger on the view.

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

QUESTION 63
You use Microsoft SQL Server 2012 to write code for a transaction that contains several statements.
There is high contention between readers and writers on several tables used by your transaction.
You need to minimize the use of the tempdb space.
You also need to prevent reading queries from blocking writing queries.
Which isolation level should you use?

A.    Create a user-defined type on the master database.
B.    Create a user-defined data type on the model database.
C.    Create a user-defined type on the model database.
D.    Create a user-defined data type on the master database.

Answer: C

QUESTION 64
You are developing a database application by using Microsoft SQL Server 2012.
An application that uses a database begins to run slowly.
Your investigation shows the root cause is a query against a read-only table that has a clustered index. The query returns the following six columns:
– One column in its WHERE clause contained in a non-clustered index
– Four additional columns
– One COUNT (*) column based on a grouping of the four additional columns
You need to optimize the statement.
What should you do?

A.    Add a HASH hint to the query.
B.    Add a LOOP hint to the query.
C.    Add a FORCESEEK hint to the query.
D.    Add an INCLUDE clause to the index.
E.    Add a FORCESCAN hint to the Attach query.
F.    Add a columnstore index to cover the query.
G.    Enable the optimize for ad hoc workloads option.
H.    Cover the unique clustered index with a columnstore index.
I.    Include a SET FORCEPLAN ON statement before you run the query.
J.    Include a SET STATISTICS PROFILE ON statement before you run the query.
K.    Include a SET STATISTICS SHOWPLAN_XML ON statement before you run the query.
L.    Include a SET TRANSACTION ISOLATION LEVEL REPEATABLE READ statement before you
run the query.
M.    Include a SET TRANSACTION ISOLATION LEVEL SNAPSHOT statement before you run the query.
N.    Include a SET TRANSACTION ISOLATION LEVEL SERIALIZABLE statement before you run the query.

Answer: F

QUESTION 65
You administer a Microsoft SQL Server 2012 database named ContosoDb.
Tables are defined as shown in the exhibit. (Click the Exhibit button.)

wpsFB64.tmp_thumb

You need to display rows from the Orders table for the Customers row having the CustomerId value set to 1 in the following XML format.

wps1432.tmp_thumb

Which Transact-SQL query should you use?

A.    SELECT OrderId, OrderDate, Amount, Name, Country
FROM Orders INNER JOIN Customers ON Orders.CustomerId = Customers-CustomerId
WHERE Customers.CustomerId = 1
FOR XML RAW
B.    SELECT OrderId, OrderDate, Amount, Name, Country
FROM Orders INNER JOIN Customers ON Orders.CustomerId = Customers.CustomerId
WHERE Customers=CustomerId = 1
FOR XML RAW, ELEMENTS
C.    SELECT OrderId, OrderDate, Amount, Name, Country
FROM Orders INNER JOIN Customers ON Orders.CustomerId = Customers.CustomerId
WHERE Customers.CustomerId = 1
FOR XML AUTO
D.    SELECT OrderId, OrderDate, Amount, Name, Country
FROM Orders INNER JOIN Customers ON Orders.CustomerId – Customers.CustomerId
WHERE Customers.CustomerId= 1
FOR XML AUTO, ELEMENTS
E.    SELECT Name, Country, OrderId, OrderDate, Amount
FROM Orders INNER JOIN Customers ON Orders.CustomerId= Customers.CustomerId
WHERE Customers.CustomerId- 1
FOR XML AUTO
F.    SELECT Name, Country, Crderld, OrderDate, Amount
FROM Orders INNER JOIN Customers ON Orders.CustomerId= Customers.CustomerId
WHERE Customers.CustomerId= 1
FOR XML AUTO, ELEMENTS
G.    SELECT Name AS ‘@Name’, Country AS ‘@Country’, OrderId, OrderDate, Amount
FROM Orders INNER JOIN Customers ON Orders.CustomerId= Customers.CustomerId
WHERE Customers.CustomerId= 1
FOR XML PATH (‘Customers’)
H.    SELECT Name AS ‘Customers/Name’, Country AS ‘Customers/Country’, OrderId,
OrderDate, Amount
FROM Orders INNER JOIN Customers ON Orders.CustomerId= Customers.CustomerId
WHERE Customers.CustomerId= 1
FOR XML PATH (‘Customers’)

Answer: F

QUESTION 66
You administer a Microsoft SQL Server 2012 database named ContosoDb.
Tables are defined as shown in the exhibit. (Click the Exhibit button.)

wps3634.tmp_thumb

You need to display rows from the Orders table for the Customers row having the Customerld value set to 1 in the following XML format.

wps4C06.tmp_thumb

Which Transact-SQL query should you use?

A.    SELECT OrderId, OrderDate, Amount, Name, Country
FROM Orders INNER JOINCustomers ON Orders.CustomerId = Customers-CustomerId
WHERE Customers.CustomerId = 1
FOR XML RAW
B.    SELECT OrderId, OrderDate, Amount, Name, Country
FROM Orders INNER JOINCustomers ON Orders.CustomerId = Customers.CustomerId
WHERE Customers.CustomerId = 1
FOR XML RAW, ELEMENTS
C.    SELECT OrderId, OrderDate, Amount, Name, Country
FROM Orders INNER JOINCustomers ON Orders.CustomerId = Customers.CustomerId
WHERE Customers.CustomerId = 1
FOR XML AUTO
D.    SELECT OrderId, OrderDate, Amount, Name, Country
FROM Orders INNER JOINCustomers ON Orders.CustomerId – Customers.CustomerId
WHERE Customers.CustomerId= 1
FOR XML AUTO, ELEMENTS
E.    SELECT Name, Country, OrderId, OrderDate, Amount
FROM Orders INNER JOINCustomers ON Orders.CustomerId=Customers.CustomerId
WHERE Customers.CustomerId= 1
FOR XML AUTO
F.    SELECT Name, Country, Crderld, OrderDate, Amount
FROM Orders INNER JOINCustomers ON Orders.CustomerId= Customers.CustomerId
WHERE Customers.CustomerId= 1
FOR XML AUTO, ELEMENTS
G.    SELECT Name AS ‘@Name’, Country AS ‘@Country’, OrderId, OrderDate, Amount
FROM Orders INNER JOIN Customers ON Orders.CustomerId= Customers.CustomerId
WHERE Customers.CustomerId= 1
FOR XML PATH (‘Customers’)
H.    SELECT Name AS ‘Customers/Name’, Country AS ‘Customers/Country’, OrderId,OrderDate, Amount
FROM OrdersINNER JOIN Customers ON Orders.CustomerId= Customers.CustomerId
WHERE Customers.CustomerId= 1
FOR XML PATH (‘Customers’)

Answer: G

QUESTION 67
You use Microsoft SQL Server 2012 to write code for a transaction that contains several statements. There is high contention between readers and writers on several tables used by your transaction.
You need to minimize the use of the tempdb space.
You also need to prevent reading queries from blocking writing queries.
Which isolation level should you use?

A.    SERIALIZABLE
B.    SNAPSHOT
C.    READ COMMITTED SNAPSHOT
D.    REPEATABLE READ

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

QUESTION 68
You create a table that has the StudentCode, SubjectCode, and Marks columns to record mid-year marks for students. The table has marks obtained by 50 students for various subjects.
You need to ensure that the top half of the students arranged by their average marks must be given a rank of 1 and the remaining students must be given a rank of 2.
Which Transact-SQL query should you use?

A.    SELECT StudentCode as Code,
RANK ( ) OVER (ORDER BY AVG (Marks) DESC) AS Value
FROM StudentMarks GROUP BY StudentCode
B.    SELECT Id, Name, Marks, DENSE_RANK () OVER (ORDER BY Marks DESC) AS Rank
FROM StudentMarks
C.    SELECT StudentCode as Code,
DENSE_RANK () OVER (ORDER BY AVG (Marks) DESC) AS Value
FROM StudentMarks GROUP BY StudentCode
D.    SELECT StudentCode as Code,
NTILE (2) OVER (ORDER BY AVG (Marks) DESC) AS Value FROM StudentMarks
GROUP BY StudentCode
E.    SELECT StudentCode AS Code,Marks AS Value
FROM (SELECT StudentCode, Marks AS Marks,
RANK () OVER (PARTITION BY SubjectCode ORDER BY Marks ASC) AS Rank
FROM StudentMarks) tmp
WHERE Rank = 1
F.    SELECT StudentCode AS Code,Marks AS Value FRCM (
SELECT StudentCode, Marks AS Marks,
RANK() OVER (PARTITION BY SubjectCode ORDER 3Y Marks DESC) AS Rank
FROM StudentMarks) tmp
WHERE Rank = 1
G.    SELECT StudentCode AS Code,Marks AS Value FROM
(SELECT StudentCode, Marks AS Marks,
RANK () OVER (PARTITION BY StudentCode ORDER BY Marks ASC) AS Rank
FROM StudentMarks) tmp
WHERE Rank = 1
H.    SELECT StudentCode AS Code,Marks AS Value FROM
(SELECT StudentCode, Marks AS Marks,
RANXO OVER (PARTITION BY StudentCode ORDER BY Marks DESC) AS Rank
FROM StudentMarks) tmp
WHERE Rank = 1

Answer: D

QUESTION 69
You create a table that has the StudentCode, SubjectCode, and Marks columns to record mid-year marks for students. The table has marks obtained by 50 students for various subjects.
You need to ensure that the following requirements are met:
– Students must be ranked based on their average marks.
– If one or more students have the same average, the same rank must be given to these students.
– Consecutive ranks must be skipped when the same rank is assigned.
Which Transact-SQL query should you use?

A.    SELECT StudentCode as Code,
RANK ( ) OVER (ORDER BY AVG (Marks) DESC) AS Value
FROM StudentMarks GROUP BY StudentCode
B.    SELECT Id, Name, Marks, DENSE_RANK () OVER (ORDER BY Marks DESC) AS Rank
FROM StudentMarks
C.    SELECT StudentCode as Code,
DENSE_RANK () OVER (ORDER BY AVG (Marks) DESC) AS Value
FROM StudentMarks GROUP BY StudentCode
D.    SELECT StudentCode as Code,
NTILE (2) OVER (ORDER BY AVG (Marks) DESC) AS Value
FROM StudentMarks GROUP BY StudentCode
E.    SELECT StudentCode AS Code,Marks AS Value
FROM (SELECT StudentCode, Marks AS Marks,
RANK () OVER (PARTITION BY SubjectCode ORDER BY Marks ASC) AS Rank
FROM StudentMarks) tmp WHERE Rank = 1
F.    SELECT StudentCode AS Code,Marks AS Value FRCM (
SELECT StudentCode, Marks AS Marks,
RANK() OVER (PARTITION BY SubjectCode ORDER 3Y Marks DESC) AS Rank
FROM StudentMarks) tmp
WHERE Rank = 1
G.    SELECT StudentCode AS Code,Marks AS Value FROM
(SELECT StudentCode, Marks AS Marks,
RANK () OVER (PARTITION BY StudentCode ORDER BY Marks ASC) AS Rank
FROM StudentMarks) tmp WHERE Rank = 1
H.    SELECT StudentCode AS Code,Marks AS Value FROM
(SELECT StudentCode, Marks AS Marks,
RANXO OVER (PARTITION BY StudentCode ORDER BY Marks DESC) AS Rank
FROM StudentMarks) tmp WHERE Rank = 1

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

QUESTION 70
You create a table that has the StudentCode, SubjectCode, and Marks columns to record mid-year marks for students. The table has marks obtained by 50 students for various subjects.
You need to retrieve the students who scored the highest marks for each subject along with the marks. Which Transact-SQL query should you use?

A.    SELECT StudentCode as Code,
RANK ( ) OVER (ORDER BY AVG (Marks) DESC) AS Value
FROM StudentMarks GROUP BY StudentCode
B.    SELECT Id, Name, Marks, DENSE_RANK () OVER (ORDER BY Marks DESC) AS Rank
FROM StudentMarks
C.    SELECT StudentCode as Code,
DENSE_RANK () OVER (ORDER BY AVG (Marks) DESC) AS Value
FROM StudentMarks GROUP BY StudentCode
D.    SELECT StudentCode as Code,
NTILE (2) OVER (ORDER BY AVG (Marks) DESC) AS Value
FROM StudentMarks GROUP BY StudentCode
E.    SELECT StudentCode AS Code,Marks AS Value
FROM (SELECT StudentCode, Marks AS Marks,
RANK () OVER (PARTITION BY SubjectCode ORDER BY Marks ASC) AS Rank
FROM StudentMarks) tmp WHERE Rank = 1
F.    SELECT StudentCode AS Code,Marks AS Value FRCM (
SELECT StudentCode, Marks AS Marks,
RANK() OVER (PARTITION BY SubjectCode ORDER 3Y Marks DESC) AS Rank
FRCM StudentMarks) tmp WHERE Rank = 1
G.    SELECT StudentCode AS Code,Marks AS Value FROM
(SELECT StudentCode, Marks AS Marks,
RANK () OVER (PARTITION BY StudentCode ORDER BY Marks ASC) AS Rank
FROM StudentMarks) tmp WHERE Rank = 1
H.    SELECT StudentCode AS Code,Marks AS Value FROM
(SELECT StudentCode, Marks AS Marks,
RANXO OVER (PARTITION BY StudentCode ORDER BY Marks DESC) AS Rank
FROM StudentMarks) tmp WHERE Rank = 1

Answer: F


Braindump2go Offers PDF & VCE Dumps Download for New Released Microsoft 70-457 Exam! 100% Exam Success Guaranteed OR Full Money Back Instantly!

15

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