Hi all,
When we use Nested Stored Procedures in sql server. How to execute it.
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.
Anil KumarPosted Nov 27, 2012, 4:58 AM
When a stored procedure is get called from a stored procedure it comes in context of Nested stored procedure.The nest level increases each time a stored procedure calls another and stopped when nesting level 32 reached.
It is used to break huge level of SQL code into smaller pieces.And it helps to find the mistakes if any and in modifications.
Rohatash KumarPosted Nov 27, 2012, 12:52 AM
When we use Nested Stored Procedures in sql server?
Anil KumarPosted Nov 27, 2012, 12:30 AM
http://msdn.microsoft.com/en-us/library/ms190607(v=sql.105).aspx
execute examples can be seen here :
http://msdn.microsoft.com/en-us/library/ms187371(v=sql.105).aspx
Satyapriya NayakPosted Nov 27, 2012, 12:20 AM
http://www.java2s.com/Tutorial/SQLServer/0420__Procedure-Function/NestingStoredProcedures.htm