PrepAway - Latest Free Exam Questions & Answers

You develop a Microsoft SQL Server 2012 database.

You develop a Microsoft SQL Server 2012 database.

You need to create and call a stored procedure that meets the following requirements:

A

ccepts a single input parameter for CustomerID.

Returns a single integer to the calling application.

Which Transact-SQL statement or statements should you use? (Each correct answer presents part of the solution. Choose all that apply.)

A.

CREATE

PROCEDURE dbo.GetCustomerRating

@CustomerID INT,

@CustomerRating INT OUTPUT

AS

SET NOCOUNT ON

SELECT @CustomerRating = CustomerOrders/CustomerValue

FROM Customers

WHERE CustomerID = @CustomerID

RETURN

GO

B.

EXECUTE dbo.GetCustomerRatin

g 1745

C.

DECLARE @CustomerRatingByCustomer INT

DECLARE @Result INT

EXECUTE @Result = dbo.GetCustomerRating

1745,

@CustomerRatingByCustomer

D.

CREATE PROCEDURE dbo.GetCustomerRating

@CustomerID INT,

@CustomerRating INT OUTPUT

AS

SET

NOCOUNT ON

SELECT @Result = CustomerOrders/CustomerValue

FROM Customers

WHERE CustomerID = @CustomerID

RETURN @Result

GO

E.

DECLARE @CustomerRatingByCustomer INT

EXECUTE dbo.GetCustomerRating

@CustomerID = 1745,

@CustomerRating =

@CustomerRatingByCustomer OUTPUT

F.

CREATE PROCEDURE dbo.GetCustomerRating

@CustomerID INT

AS

DECLARE @Result INT

SET NOCOUNT ON

SELECT @Result = CustomerOrders/CustomerValue

FROM Customers

WHERE CustomerID = @CustomerID

RETURNS @Result

GO

Explanation:


Leave a Reply

PrepAway - Latest Free Exam Questions & Answers

You develop a Microsoft SQL Server 2012 database…

You develop a Microsoft SQL Server 2012 database

. The database is used by two web applications that access a table named Products.

You want to create an object that will prevent the applications from accessing the table directly while still providing access to the required data.

You need to ensure tha

t the following requirements are met:

Future modifications to the table definition will not affect the applications ability to access data.

The new object can accommodate data retrieval and data modification.

You need to achieve this goal by using the mi

nimum amount of changes to the applications.

What should you create for each application?

A. Synonyms

B. Common table expressions

C. Views

D. Temporary tables

Explanation:

Reference: http://msdn.microsoft.com/en-us/library/ms190174.aspx


Leave a Reply