can we call stored Procedure in Function in Sql Server 2000
and vice versa.
Answer Posted / mohammad ali
We cannot call Procedure from the Function
We can call the Procedure From the Procedure as
EXEC ProcedureName
@Parameter1 = "Para1"
@Parameter2 = "Para2"
@Parameter3 = @Val OUTPUT (Use when there is Output in the Procedure)
Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
Explain what is cte (common table expression)?
How do I shrink an ldf file?
Explain the working of sql privileges?
What is the need for indexing?
What is db stored procedure?
What is the return type of executeupdate ()?
What is the difference between local and global temporary tables?
What is a db view?
What are the different types of backups avaialabe in sql server 2005?
Explain data warehousing in sql server?
What is a rollup clause?
Is it possible for a stored procedure to call itself or recursive stored procedure? How many levels of sp nesting are possible?
What are the different normalization forms?
What is command parameter in ssrs?
How to list all user names in a database?