How will oyu test the stored procedure taking two parameters
namely first name and last name returning full name?
Answers were Sorted based on User's Feedback
create procedure prctrial @firstname char(5),
@lastname char{5}
as
print @firstname+''+@lastname
prctrial Miss,Happy
output....Miss Happy
Is This Answer Correct ? | 2 Yes | 1 No |
Answer / jerry joseph
EXEC ProcedureName 'FirstName', 'LastName'
Is This Answer Correct ? | 2 Yes | 2 No |
What is an execution plan? When would you use it? How would you view the execution plan?
why would you call update statistics? : Sql server database administration
Does any body please help me what question's have asked for SSRS in the interview?
Explain optimistic and pessimistic concurrency?
what is differece between union and union all
What method is used by the Command classes to execute SQL statements that return single values?
What is the diff between Dynamic queries and static queries
1 Answers CGG, ICS Integrated Computer Solutions,
How to throw custom exception in Stored Procedure?
What is bit datatype and what's the information that can be stored inside a bit column?
What is the maximum length of an alert name?
How to Run a Query on a Remote SQL Server?
Find nth lowest salary or get nth lowest salary?