Hi,
Can any one tell me, is it possible to call one stored procedure inside other stored procedure???
If some one know its answer then please let me know.
Thanks in advance.
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Vijaya KadiyalaPosted Apr 10, 2008, 12:31 PM
Hi,
yes it possible, but make sure that you dont cross the nested level of the stored procedure. the nested level is 32.
Thanks --Vj
abhishek trivediPosted Feb 1, 2008, 6:32 AM
Hi !!
This is possible and simple as well.
you have to write Exec provedure name and write the parameter value to pass into the second procedure.
that's it.
You will get the second SP executing inside the First one.
MartinPosted Dec 14, 2006, 4:49 PM
Simply 'exec' it within the stored procedure.