Viewing 3 posts - 1 through 3 (of 3 total)
Thanks guys, Got it! and it works
I can actually do it either way.
December 9, 2005 at 10:38 am
#608762
This is exactly what I am running.
CREATE PROCEDURE dbo.offer_ckcd
@account numeric
AS
-- DECLARE AND INITIALIZE
DECLARE @response int
SET @response=0
-- BEGIN LOGIC
BEGIN
EXEC @response = dbo.active_ckg @account
IF @response = 1
--...
November 28, 2005 at 1:10 pm
#606207
Thank you so much for both replys to my post;
What I want is for the store proc to evaluate all of the conditions; if they are true or if...
November 28, 2005 at 10:11 am
#606153