Quantcast
Channel: Download 2014 Pass4sure And PassLeader Dumps with VCE & PDF » 70-457 brain dumps
Viewing all articles
Browse latest Browse all 2

New Microsoft 70-457 Course Material Available To Buy For 20% Discount (241-250)

$
0
0

QUESTION 241
You develop a Microsoft SQL Server 2012 database that contains a table named Customers. The Customers table has the following definition:
2411
You need to create an audit record only when either the MobileNumber or HomeNumber column is updated. Which Transact-SQL query should you use?

A.    CREATE TRIGGER TrgPhoneNumberChange
ON Customers FOR UPDATE
AS
IF COLUMNS_UPDATED (HomeNumber, MobileNumber)
- – Create Audit Records
B.    CREATE TRIGGER TrgPhoneNumberChange
ON Customers FOR UPDATE
AS
IF EXISTS( SELECT HomeNumber FROM inserted) OR
EXISTS (SELECT MobileNumber FROM inserted)
- – Create Audit Records
C.    CREATE TRIGGER TrgPhoneNumberChange
ON Customers FOR UPDATE
AS
IF COLUMNS_CHANGED (HomeNumber, MobileNumber)
- – Create Audit Records
D.    CREATE TRIGGER TrgPhoneNumberChange
ON Customers FOR UPDATE
AS
IF UPDATE (HomeNumber) OR UPDATE (MobileNumber)
- – Create Audit Records

Answer: D

QUESTION 242
You develop a Microsoft SQL Server 2012 database that has two tables named SavingAccounts and LoanAccounts. Both tables have a column named AccountNumber of the nvarchar data type. You use a third table named Transactions that has columns named TransactionId AccountNumber, Amount, and TransactionDate. You need to ensure that when multiple records are inserted in the Transactions table, only the records that have a valid AccountNumber in the SavingAccounts or LoanAccounts are inserted. Which Transact-SQL statement should you use?

A.    CREATE TRIGGER TrgValidateAccountNumber
ON Transactions
INSTEAD OF INSERT
AS
BEGIN
  INSERT INTO Transactions
  SELECT TransactionID,AccountNumber,Amount,TransactionDate FROM inserted
    WHERE AccountNumber IN
  (SELECT AccountNumber FROM LoanAccounts
   UNION SELECT AccountNumber FROM SavingAccounts))
END
B.    CREATE TRIGGER TrgValidateAccountNumber
ON Transactions
FOR INSERT
AS
BEGIN
  INSERT INTO Transactions
  SELECT TransactionID,AccountNumber,Amount,TransactionDate FROM inserted
    WHERE AccountNumber IN
  (SELECT AccountNumber FROM LoanAccounts
   UNION SELECT AccountNumber FROM SavingAccounts))
END
C.    CREATE TRIGGER TrgValidateAccountNumber
ON Transactions
INSTEAD OF INSERT
AS
BEGIN
  IF EXISTS (
  SELECT AccountNumber FROM inserted EXCEPT
  (SELECT AccountNumber FROM LoanAccounts
   UNION SELECT AccountNumber FROM SavingAccounts))
  BEGIN
    ROLLBACK TRAN
  END
END 
D.    CREATE TRIGGER TrgValidateAccountNumber
ON Transactions
FOR INSERT
AS
BEGIN
  IF EXISTS (
  SELECT AccountNumber FROM inserted EXCEPT
  (SELECT AccountNumber FROM LoanAccounts
   UNION SELECT AccountNumber FROM SavingAccounts))
  BEGIN
    ROLLBACK TRAN
  END
END 

Answer: A

QUESTION 243
You develop a Microsoft SQL Server 2012 database. You create a view that performs the following tasks:
  Joins 8 tables that contain up to 500,000 records each.
  Performs aggregations on 5 fields.
  The view is frequently used in several reports.
You need to improve the performance of the reports. What should you do?
Convert the view into a table-valued function. Convert the view into a Common Table Expression (CTE). Convert the view into an indexed view.
Convert the view into a stored procedure and retrieve the result from the stored procedure into a temporary table.

A.    Convert the view into a table-valued function.
B.    Convert the view into a Common Table Expression (CTE).
C.    Convert the view into an indexed view.
D.    Convert the view into a stored procedure and retrieve the result from the stored procedure into
a temporary table.

Answer: C

QUESTION 244
You are a database developer of a Microsoft SQL Server 2012 database. The database contains a table named Customers that has the following definition:
2441
You need to ensure that the CustomerId column in the Orders table contains only values that exist in the CustomerId column of the Customer table. Which Transact-SQL statement should you use?

A.    ALTER TABLE Orders
ADD CONSTRAINT FX_Orders_CustomerID FOREIGN KEY (CustomerId) REFERENCES Customer
(CustomerId)
B.    ALTER TABLE Customer
ADD CONSTRAINT FK_Customer_CustomerID FOREIGN KEY {Cu3tomerID; REFERENCES Orders
(CustomerId)
C.    ALTER TABLE Orders
ADD CONSTRAINT CK_Crders_CustomerID
CHECK (CustomerId IN (SELECT CustomerId FROM Customer))
D.    ALTER TABLE Customer
ADD OrderId INT NOT NULL;
ALTER TABLE Customer
ADD CONSTRAINT FK_Customer_OrderID FOREIGN KEY (CrderlD) REFERENCES Orders (CrderlD);
E.    ALTER TABLE Orders
ADD CONSTRAINT PK Orders CustomerId PRIMARY KEY (CustomerID)

Answer: A

QUESTION 245
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:
2451
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

QUESTION 246
You develop a Microsoft SQL Server 2012 database. You create a view from the Orders and OrderDetails tables by using the following definition.
2461
You need to ensure that users are able to modify data by using the view.
What should you do?

A.    Create an AFTER trigger on the view.
B.    Modify the view to use the WITH VIEW_METADATA clause.
C.    Create an INSTEAD OF trigger on the view.
D.    Modify the view to an indexed view.

Answer: C

QUESTION 247
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

QUESTION 248
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 249
You administer a Microsoft SQL Server 2012 database named ContosoDb. Tables are defined as shown in the exhibit. (Click the Exhibit button.)
2491
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.
2492
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 250
You administer a Microsoft SQL Server 2012 database named ContosoDb. Tables are defined as shown in the exhibit. (Click the Exhibit button.)
2501
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.
2502
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

New Microsoft 70-457 Course Material Available To Buy For 20% Discount


Viewing all articles
Browse latest Browse all 2

Latest Images

Trending Articles





Latest Images