[Source] MatchServer Crashing

Results 1 to 5 of 5
  1. #1
    Doggie And Rice. Military is offline
    MemberRank
    Jun 2009 Join Date
    Here and AboutLocation
    3,301Posts

    [Source] MatchServer Crashing

    Code:
    [07/12/12 17:46:49]  MMatchDBMgr::ExceptionHandler
    ErrSQL( {CALL spUpdateServerStatus_Netmarble (0, 0, 1)} ), ErrCode( -1 )
    ErrMsg - Could not find stored procedure 'spUpdateServerStatus_Netmarble'.
    State:37000,Native:2812,Origin:[Microsoft][ODBC SQL Server Driver][SQL Server]
    Anyone has that stored procedure??


  2. #2
    Account Upgraded | Title Enabled! CobraBite is offline
    MemberRank
    Jan 2011 Join Date
    Where?Location
    281Posts

    Re: [Source] MatchServer Crashing

    USE GunzDB
    GO

    CREATE PROCEDURE dbo.spUpdateServerStatus_Netmarble
    @CurrPlayer SMALLINT,
    @NatePlayer SMALLINT,
    @ServerID INT
    AS BEGIN

    UPDATE ServerStatus
    Set CurrPlayer = @CurrPlayer, NatePlayer = @NatePlayer, Time=GETDATE()
    WHERE ServerID=@ServerID

    END
    Edit: Sorry pressed reply button by mistake.
    Next time check your DATABASE folder from the source :), There are lot of sql scripts there.
    Last edited by CobraBite; 13-07-12 at 05:45 PM.

  3. #3
    Alpha Member Chrisss is offline
    MemberRank
    Feb 2012 Join Date
    Ask the Fox!Location
    1,660Posts

    Re: [Source] MatchServer Crashing

    build in Release

  4. #4
    Hi, I'm Omar! Vusion is offline
    MemberRank
    Jan 2011 Join Date
    HereLocation
    1,658Posts

    Re: [Source] MatchServer Crashing

    Quote Originally Posted by Duluxe View Post
    build in Release
    Go away.

    Quote Originally Posted by CobraBite View Post
    Edit: Sorry pressed reply button by mistake.
    Next time check your DATABASE folder from the source :), There are lot of sql scripts there.
    Actually, you ought not to use that one; you should just change the call for netmarble's spUpdateServerStatus to the normal one.
    You'll know why later on.

  5. #5
    Doggie And Rice. Military is offline
    MemberRank
    Jun 2009 Join Date
    Here and AboutLocation
    3,301Posts

    Re: [Source] MatchServer Crashing

    Fixed , thanks to Vusion.



Advertisement