Carlosdl
29340 pts. | Apr 8 2009 12:00AM GMT
You might want to explain further what you need to accomplish.



CREATE PROCEDURE YourParentPRoc
AS
DECLARE @retValue INT
EXEC @retValue = YourChildProc
IF @retValue <> 0
return(0)
/*
More code goes after the return.
*/
END


Carlosdl
29340 pts. | Apr 8 2009 12:00AM GMT
You might want to explain further what you need to accomplish.
