Microsoft 70-461 Study Material

We are Providing you the Best Study Material to Pass the Microsoft 70-461 Certification Exam. Our Material is Very Helpful for those Students Who want to pass their Certification Exams in High Scores.

Latest Microsoft News

We are also Made you aware of all the latest News of Microsoft as well as the Products of Microsoft.

Microsoft 70-461 Certifications Exam Questions

Here You Can Get the Latest Exam Questions Of Microsoft 70-461 Certification Exams. Your Success is Guaranteed if You go through these Questions Once.

We Ensure Your Success

We Can Understand the Importance of your Success in Exam thats why We Put All Our Efforts to Provide You the Best and Most Updated Study Material.

Wednesday 24 June 2015

Microsoft 70-461 Sample Question

Question No: 1

You work as a database administrator at ABC.com. ABC.com has a SQL Server 2012 database
named SalesDB. The SalesDB database is shown in the following database diagram:


You create a view on the SalesDB using the following Transact-SQL code:
CREATE VIEW SalesV
WITH SCHEMABINDINGS
AS
SELECT Products.ProductID, Invoices.InvoiceDate, SUM (Products.RetailPrice *
OrderDetail.Quantity * OrderDetail.SalesDiscount) AS Price
FROM OrderDetail INNER JOIN Products ON
OrderDetail.ProductID = Products.ProducID
INNER JOIN Invoices ON
OrderDetail.InvoiceID = Invoices.InvoiceID
GROUP BY Products.ProductID, Invoices.InvoiceDate
GO

How should you alter this view to allow users to update data through the SalesV?

A. You should add a CHECK constraint to the SalesV view.
B. You should add an INSTEAD OF trigger to the SalesV view.
C. You should add a clustered index to the SalesV view.
D. You should add an AFTER UPDATE trigger to the SalesV view.
E. Create a columnstore index on all columns used in the SalesV view.

Answer: B