READ Free Dumps For Microsoft- 70-462
Question ID 18935 | You administer a Microsoft SQL Server 2012 default instance. |
Option A | Enable inbound connections on TCP port 1434 in the Windows Firewall on the server. |
Option B | Execute the following Transact-SQL command: sp_configure 'remote admin connections', |
Option C | Execute the Reconfigure command. |
Option D | Execute the following Transact-SQL command: sp_configure 'remote access', 1 |
Option E | Restart the SQL Server Agent Service. |
Option F | Enable inbound connections on TCP port 135 in the Windows Firewall on the server. |
Correct Answer | A,B,C |
Question ID 18936 | You administer a Microsoft SQL Server 2012 database named ContosoDb. Tables are You need to display rows from the Orders table for the Customers row having the Which Transact-SQL query should you use? |
Option A | SELECT OrderId, OrderDate, Amount, Name, Country FROM Orders INNER JOIN Customers ON Orders.CustomerId = Customers-CustomerId WHERE Customers.CustomerId = 1 FOR XML RAW |
Option B | 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') |
Option C | 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') |
Option D | SELECT Name, Country, Crderld, OrderDate, Amount FROM Orders INNER JOIN Customers ON Orders.CustomerId= Customers.CustomerId WHERE Customers.CustomerId= FOR XML AUTO, ELEMENTS |
Option E | SELECT Name, Country, OrderId, OrderDate, Amount FROM Orders INNER JOIN Customers ON Orders.CustomerId= Customers.CustomerId WHERE Customers.CustomerId= FOR XML AUTO |
Option F | SELECT OrderId, OrderDate, Amount, Name, Country FROM Orders INNER JOIN Customers ON Orders.CustomerId - Customers.CustomerId WHERE Customers.CustomerId= 1 FOR XML AUTO, ELEMENTS |
Correct Answer | B |