Forum Replies Created

Viewing 3 posts - 1 through 4 (of 4 total)

  • RE: How to Split a char field?

    Thanks guys,  Got it! and it works 

    I can actually do it either way.

     

  • RE: Stored Proc calls others but stops

    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

      -- HAS ACTIVE CHECKING

       BEGIN

       EXEC @response...

  • RE: Stored Proc calls others but stops

    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...

Viewing 3 posts - 1 through 4 (of 4 total)