READ Free Dumps For Microsoft- 70-461
Question ID 15080 | You have an XML schema collection named Sales.InvoiceSchema. |
Option A | Answer : DECLARE @XML1 XML(Sales.InvoiceSchema) |
Correct Answer | A |
Question ID 15081 | You use a Microsoft SQL Server 2012 database that contains a table named BlogEntry that Id is the Primary Key. |
Option A | UPDATE TOP(10) BlogEntry SET Summary.WRITE(N' This is in a draft stage', NULL, 0) |
Option B | UPDATE BlogEntry SET Summary = CAST(N' This is in a draft stage' as nvarchar(max)) WHERE Id IN(SELECT TOP(10) Id FROM BlogEntry ORDER BY EntryDateTime DESC) |
Option C | UPDATE BlogEntry SET Summary.WRITE(N' This is in a draft stage', NULL, 0) FROM ( SELECT TOP(10) Id FROM BlogEntry ORDER BY EntryDateTime DESC) AS s WHERE BlogEntry.Id = s.ID |
Option D | UPDATE BlogEntry SET Summary.WRITE(N' This is in a draft stage', 0, 0) WHERE Id IN(SELECT TOP(10) Id FROM BlogEntry ORDER BY EntryDateTime DESC) |
Correct Answer | C |