Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
karthickbabu
Posting Yak Master
151 Posts |
Posted - 2008-01-10 : 02:00:01
|
| What is the Maximum Number of parameters passing to the Store Procedures.Any article about using nested procedures |
|
|
nr
SQLTeam MVY
12543 Posts |
Posted - 2008-01-10 : 03:17:19
|
| Have a look at the create procedure statement in bol (21000 is the number).Not sure what you want to know about nested procedures.temp tables are accessible from nested procs - but if they create one with the same name it will be a different temp table while in scope (but can cause problems).Variables/table variables aren't accessible.Transactions will include nested SPs.Try catch blocks will be active for the nested SPs.==========================================Cursors are useful if you don't know sql.DTS can be used in a similar way.Beer is not cold and it isn't fizzy. |
 |
|
|
|
|
|