Hi,
I know that you can call one stored procedure from another by using the command
My question is, how do I pass the parameters to the second procedure if any are needed?
Am assuming that if the stored procedure returns a single value then I can declare a variable and set the valariable equals to the procedure
Mike55.
Mike55.
I know that you can call one stored procedure from another by using the command
Code:
exec "procedure"
My question is, how do I pass the parameters to the second procedure if any are needed?
Am assuming that if the stored procedure returns a single value then I can declare a variable and set the valariable equals to the procedure
Code:
Declare @x as int
set @x = exec "procedure"
Mike55.
Mike55.