Forum Replies Created

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

  • RE: ''''joehack''''

    Here is the code for the stored procedure referenced above.

    create procedure dbo.ProblemNoResponse

    @errorcode varchar(1) out

    as

    declare @countrows numeric(20)

    declare @errormessage varchar(10)

    select @countrows=count(*) from fin_xferhold

    if ( @countrows= 0 )

    begin

    set @errorcode= 1

    end

    else

    begin

     if ((select distinct...

  • RE: ''''joehack''''

    Here is another code extract from profiler.  I still can't find any reference to 'joehack' anywhere within the code, scripts, jsps, triggers, stored procedures, and any system procedures.

    DECLARE @OUTPAR1 nvarchar(4000)

     execute ...

  • RE: ''''joehack''''

    Negative, I've checked all scripts and code.  Nowhere in the application can I find any reference to joehack.

  • RE: ''''joehack''''

    We've checked everything and there is nothing referring to 'joehack'.  I'm also confused as to why a string is being returned. 

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