Item Server Log of Death?

Results 1 to 5 of 5
  1. #1
    Tantra Freelancer A v a r a is offline
    MemberRank
    Apr 2014 Join Date
    In Your HeadLocation
    554Posts

    Item Server Log of Death?

    I am wondering what does this log indicates?

    sql [Microsoft][ODBC SQL Server Driver][SQL Server]Could not find stored procedure 'hb_tan_gp_userinfo_se'.

    ..and how to avoid this..

    Ciao!


  2. #2
    Banned Radiantecf is offline
    BannedRank
    Mar 2008 Join Date
    your heartLocation
    196Posts

    Re: Item Server Log of Death?

    Create a ODBC to billcrux_phil Data Base and configure config.txt with this ODBC.

    The problem is the hb_tan_gp_userinfo_se store procedure, if you still have the same problem you can execute the next code in your billcrux_phil Data Base.

    Code:
    /****** Object:  StoredProcedure [dbo].[hb_tan_gp_userinfo_se]    Script Date: 09/21/2014 18:05:14 ******/
    SET ANSI_NULLS OFF
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    CREATE PROCEDURE [dbo].[hb_tan_gp_userinfo_se]
        @userId    AS    nvarchar(64)
    AS
    DECLARE @cashBalance    AS    INT
    SELECT @cashBalance = cashBalance FROM tblUserInfo WHERE userId = @userId AND apply = 1
    IF(@@ROWCOUNT = 0)
        SET @cashBalance = -1
    SELECT @cashBalance AS cashBalance
    GO

  3. #3
    Tantra Freelancer A v a r a is offline
    MemberRank
    Apr 2014 Join Date
    In Your HeadLocation
    554Posts

    Re: Item Server Log of Death?

    Quote Originally Posted by Radiantecf View Post
    Create a ODBC to billcrux_phil Data Base and configure config.txt with this ODBC.

    The problem is the hb_tan_gp_userinfo_se store procedure, if you still have the same problem you can execute the next code in your billcrux_phil Data Base.

    Code:
    /****** Object:  StoredProcedure [dbo].[hb_tan_gp_userinfo_se]    Script Date: 09/21/2014 18:05:14 ******/
    SET ANSI_NULLS OFF
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    CREATE PROCEDURE [dbo].[hb_tan_gp_userinfo_se]
        @userId    AS    nvarchar(64)
    AS
    DECLARE @cashBalance    AS    INT
    SELECT @cashBalance = cashBalance FROM tblUserInfo WHERE userId = @userId AND apply = 1
    IF(@@ROWCOUNT = 0)
        SET @cashBalance = -1
    SELECT @cashBalance AS cashBalance
    GO
    Thanks. Will look forward for the logs after restarting my itemsvr.exe.

  4. #4
    Tantra Freelancer A v a r a is offline
    MemberRank
    Apr 2014 Join Date
    In Your HeadLocation
    554Posts

    Re: Item Server Log of Death?

    @Radiantecf

    How about for "hb_tan_gp_applyinfo_userinfo_in" do you have a script for this? Please help. :(

  5. #5
    Member iElyrb is offline
    MemberRank
    Jan 2018 Join Date
    99Posts

    Re: Item Server Log of Death?

    I suggest you look for a fixed database and restore it on another instance then just copy the whole stored procedures on your live server.

    You are missing stored procedures on billcrux_phil.



Advertisement