Logs

Results 1 to 6 of 6
  1. #1
    Banned Requnael is offline
    BannedRank
    Apr 2009 Join Date
    EstoniaLocation
    378Posts

    Logs

    Code:
    [01/07/11 18:07:48] GARBAGE SESSION CLEANING: ClientCount = 2, SessionCount = 2, AgentCount = 0, CommandPool = 11, objHistoryCount = 4
    
    MMatchDBMgr:: UpdateCharInfoData - error Arithmetic overflow error converting expression to data type int.
    Execution of this instruction was interrupted.
    
    [18:10:03] Async DB Query (OnAsyncUpdateCharInfoData) Failed
    MMatchDBMgr:: UpdateCharInfoData - error Arithmetic overflow error converting expression to data type int.
    Execution of this instruction was interrupted.
    
    [18:10:47] Async DB Query (OnAsyncUpdateCharInfoData) Failed
    What is it

    Code:
    USE [gunzdb]
    GO
    /****** Object:  StoredProcedure [dbo].[spUpdateCharInfoData]    Script Date: 01/08/2011 12:30:52 ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    /* 캐릭터 정보(XP, BP, KillCount, DeathCount) 업데이트 */
    ALTER PROC [dbo].[spUpdateCharInfoData]
      @XPInc        int,
      @BPInc        int,
      @KillInc      int,
      @DeathInc     int,
      @CID          int
    AS
    SET NOCOUNT ON
      
    UPDATE Character 
    SET XP=XP+(@XPInc), BP=BP+(@BPInc), KillCount=KillCount+(@KillInc), DeathCount=DeathCount+(@DeathInc)
    WHERE CID=@CID
    dbo.Character

    Code:
    /****** Сценарий для команды SelectTopNRows среды SSMS  ******/
    SELECT TOP 1000 [CID]
          ,[AID]
          ,[Name]
          ,[Level]
          ,[Sex]
          ,[CharNum]
          ,[Hair]
          ,[Face]
          ,[XP]
          ,[BP]
          ,[HP]
          ,[AP]
          ,[FR]
          ,[CR]
          ,[ER]
          ,[WR]
          ,[head_slot]
          ,[chest_slot]
          ,[hands_slot]
          ,[legs_slot]
          ,[feet_slot]
          ,[fingerl_slot]
          ,[fingerr_slot]
          ,[melee_slot]
          ,[primary_slot]
          ,[secondary_slot]
          ,[custom1_slot]
          ,[custom2_slot]
          ,[RegDate]
          ,[LastTime]
          ,[PlayTime]
          ,[GameCount]
          ,[KillCount]
          ,[DeathCount]
          ,[DeleteFlag]
          ,[DeleteName]
          ,[head_itemid]
          ,[chest_itemid]
          ,[hands_itemid]
          ,[legs_itemid]
          ,[feet_itemid]
          ,[fingerl_itemid]
          ,[fingerr_itemid]
          ,[melee_itemid]
          ,[primary_itemid]
          ,[secondary_itemid]
          ,[custom1_itemid]
          ,[custom2_itemid]
          ,[QuestItemInfo]
          ,[Ranking]
      FROM [gunzdb].[dbo].[Character]

    Why rank in the game does not change...
    Last edited by Requnael; 08-01-11 at 11:46 AM.


  2. #2
      Phoenix is offline
    ModeratorRank
    Mar 2009 Join Date
    6,890Posts

    Re: Logs

    Ranking in-game doesn't work on the 2008 files.

  3. #3
    Banned Requnael is offline
    BannedRank
    Apr 2009 Join Date
    EstoniaLocation
    378Posts

    Re: Logs

    What about this error?

    [01/07/11 18:07:48] GARBAGE SESSION CLEANING: ClientCount = 2, SessionCount = 2, AgentCount = 0, CommandPool = 11, objHistoryCount = 4

    MMatchDBMgr:: UpdateCharInfoData - error Arithmetic overflow error converting expression to data type int.
    Execution of this instruction was interrupted.

    [18:10:03] Async DB Query (OnAsyncUpdateCharInfoData) Failed
    MMatchDBMgr:: UpdateCharInfoData - error Arithmetic overflow error converting expression to data type int.
    Execution of this instruction was interrupted.

    [18:10:47] Async DB Query (OnAsyncUpdateCharInfoData) Failed

  4. #4
      Phoenix is offline
    ModeratorRank
    Mar 2009 Join Date
    6,890Posts

    Re: Logs

    Your spUpdateCharInfoData script is different than mine. Execute this on your database:

    Code:
    GO
    /****** Object:  StoredProcedure [dbo].[spUpdateCharInfoData]    Script Date: 11/17/2010 14:36:45 ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    /* 캐릭터 정보(XP, BP, KillCount, DeathCount) 업데이트 */
    CREATE PROC [dbo].[spUpdateCharInfoData]
      @XPInc        int,
      @BPInc        int,
      @KillInc      int,
      @DeathInc     int,
      @CID          int
    AS
    SET NOCOUNT ON
      
    DECLARE @CIDCount int
    SELECT @CIDCount=COUNT(*) FROM explock(nolock) WHERE CID=@CID
    
    If (@XPInc > 0 AND @CIDCount <> 1)
    Begin
    UPDATE Character 
    SET XP=XP+(@XPInc), BP=BP+(@BPInc), KillCount=KillCount+(@KillInc), DeathCount=DeathCount+(@DeathInc)
    WHERE CID=@CID
    End
    else
    Begin
    UPDATE Character 
    SET BP=BP+(@BPInc), KillCount=KillCount+(@KillInc), DeathCount=DeathCount+(@DeathInc)
    WHERE CID=@CID
    End

  5. #5
    Banned Requnael is offline
    BannedRank
    Apr 2009 Join Date
    EstoniaLocation
    378Posts

    Re: Logs

    Well im now using you databases, and still got this error


    Code:
    [01/10/11 15:04:38] GARBAGE SESSION CLEANING : ClientCount=2, SessionCount=3, AgentCount=1, CommandPool=26, objHistoryCount=6
    
    MMatchDBMgr::UpdateCharInfoData - Ошибка арифметического переполнения при преобразовании expression к типу данных int.
    Выполнение данной инструкции было прервано.
    
    [15:08:13] Async DB Query(OnAsyncUpdateCharInfoData) Failed
    success to update CustomIP
    [01/10/11 15:09:38] GARBAGE SESSION CLEANING : ClientCount=4, SessionCount=5, AgentCount=1, CommandPool=26, objHistoryCount=8
    
    MMatchDBMgr::UpdateCharInfoData - Ошибка арифметического переполнения при преобразовании expression к типу данных int.
    Выполнение данной инструкции было прервано.
    
    [15:11:51] Async DB Query(OnAsyncUpdateCharInfoData) Failed
    [01/10/11 15:12:37] ChatRoom Created : '11' 
    [01/10/11 15:14:38] GARBAGE SESSION CLEANING : ClientCount=4, SessionCount=5, AgentCount=1, CommandPool=26, objHistoryCount=7
    
    MMatchDBMgr::UpdateCharInfoData - Ошибка арифметического переполнения при преобразовании expression к типу данных int.
    Выполнение данной инструкции было прервано.
    
    [15:18:05] Async DB Query(OnAsyncUpdateCharInfoData) Failed
    [01/10/11 15:19:38] GARBAGE SESSION CLEANING : ClientCount=4, SessionCount=5, AgentCount=1, CommandPool=26, objHistoryCount=6


    ---------- Post added at 07:26 PM ---------- Previous post was at 07:24 PM ----------

    Oh yea, i want know. What is doing it?

    [LOOPLOG]
    USE_LOOPLOG="1"
    MAX_LOOP_TIME_GAP="3600"

    USE_RESOURCECRC32CACHECKECK="1"

    [KILLTRACKER]
    USE_KILLTRACKER="1"
    MAXKILLCOUNT_ON_TRACETIME="50"
    KILLCOUNT_TRACETIME="50"

    [POWERLEVELING]
    USE_POWERLEVELING_DB_BLOCK="1"
    POWERLEVELING_DB_BLOCKTIME="100000"

  6. #6
    DRGunZ 2 Creator wesman2232 is offline
    MemberRank
    Jan 2007 Join Date
    Erie, PALocation
    4,872Posts

    Re: Logs

    Something is trying to add something to character.dbo that isn't an integer.
    Make a create query script for character.dbo and post it here.



Advertisement