Hi,
I dont know how to call a stored procedure from another
stored procedure. I know it can be done but im a rookie
with sql server programming.
thank you
I dont know how to call a stored procedure from another
stored procedure. I know it can be done but im a rookie
with sql server programming.
thank you
Create proc SP1
As
...
...
Exec SP2 ,,,
...
...
--
HTH,
Vinod Kumar
MCSE, DBA, MCAD
SCT Software Solutions
Hi,
I dont know how to call a stored procedure from another
stored procedure. I know it can be done but im a rookie
with sql server programming.
thank you
exec <sp_name> param1,param2
--Vishal
Quote:>-----Original Message-----
>Hi,
>I dont know how to call a stored procedure from another
>stored procedure. I know it can be done but im a rookie
>with sql server programming.
>thank you
>.
as in
create table #foo (col1 datatype, col2 datatype, col3 datatype....)
Then you can use #foo in your main stored procedure
--
Keith, SQL Server MVP
Inside the first SP use the EXEC to call the second SP.
Create proc SP1
As
...
...
Exec SP2 ,,,
...
...
--
HTH,
Vinod Kumar
MCSE, DBA, MCAD
SCT Software Solutions
Hi,
I dont know how to call a stored procedure from another
stored procedure. I know it can be done but im a rookie
with sql server programming.
thank you
eg.
EXEC myproc
--
Tony Rogerson
SQL Server MVP
http://www.sqlserverfaq.com?mbr=21
(Create your own groups, Forum, FAQ's and a ton more)
1. Call a stored procedure from another stored procedure
Hi all
I'm using Sqlserver 2000 .
I would like to know if it is possible to call a stored procedure from
another stored procedure . I'm not in the master database .
If the answer is true would you mind guiving me the syntax.
Thanks for the help in advance.
3. Calling a Stored Procedure from a Stored Procedure
5. Calling a stored procedure by another stored procedure
6. Help job to reset sql to atomic time from web
7. QUESTION: How can I call a Stored Procedure from another Stored Procedure
8. Database design book (or website)
9. Calling a Stored Procedure from a Stored Procedure
10. Calling a stored procedure within a stored procedure.
11. How do I call a stored procedure from another stored Procedure
12. Calling A Stored Procedure from another Stored Procedure
13. Calling a stored procedure from a stored procedure