Weird navicat error? menu

Shout-Out

User Tag List

Results 1 to 8 of 8
  1. #1
    ZnyX's Avatar Banned
    Reputation
    97
    Join Date
    Jan 2008
    Posts
    324
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Weird navicat error?

    Hey folks, i got a small problem with a freinds navicat, when he's trying to execute Spartans and even Silvermoon's DB


    Error that accoured, is the following.

    [Err] 1074 - Column length too big for column 'regex_ignore_if_matched' (max = 255); use BLOB or TEXT instead
    [Err] -- ----------------------------
    -- Table structure for wordfilter_character_names
    -- ----------------------------
    CREATE TABLE `wordfilter_character_names` (
    `regex_match` varchar(500) NOT NULL,
    `regex_ignore_if_matched` varchar(500) NOT NULL default ''
    ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
    [Msg] Finished - Unsuccessfully
    --------------------------------------------------


    I've never seen it before, and i'm totaly clueless, hope we got a guy here thats able to solve the problem

    Thanks in advance!

    Weird navicat error?
  2. #2
    latruwski's Avatar Banned
    Reputation
    647
    Join Date
    Dec 2006
    Posts
    2,456
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Rhainland View Post
    Hey folks, i got a small problem with a freinds navicat, when he's trying to execute Spartans and even Silvermoon's DB


    Error that accoured, is the following.

    [Err] 1074 - Column length too big for column 'regex_ignore_if_matched' (max = 255); use BLOB or TEXT instead
    [Err] -- ----------------------------
    -- Table structure for wordfilter_character_names
    -- ----------------------------
    CREATE TABLE `wordfilter_character_names` (
    `regex_match` varchar(500) NOT NULL,
    `regex_ignore_if_matched` varchar(500) NOT NULL default ''
    ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
    [Msg] Finished - Unsuccessfully
    --------------------------------------------------


    I've never seen it before, and i'm totaly clueless, hope we got a guy here thats able to solve the problem

    Thanks in advance!
    the table you are trying to create has too big column ...

    instead of:
    Code:
     CREATE TABLE `wordfilter_character_names` (
      `regex_match` varchar(500) NOT NULL,
      `regex_ignore_if_matched` varchar(500) NOT NULL default ''
    ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
    try this one:

    Code:
     CREATE TABLE `wordfilter_character_names` (
      `regex_match` varchar(255) NOT NULL,
      `regex_ignore_if_matched` varchar(255) NOT NULL default ''
    ) ENGINE=InnoDB DEFAULT CHARSET=latin1;

  3. #3
    Ellenor's Avatar Active Member
    Reputation
    18
    Join Date
    Jan 2008
    Posts
    281
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    or use it on an empty database!

    It will solve the promb and latru i think u are wrong... its a sql promblem that cant read it

    (i may be wrong too... but i had the same prob like 2 weeks before):P

  4. #4
    Ellenor's Avatar Active Member
    Reputation
    18
    Join Date
    Jan 2008
    Posts
    281
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    btw u cant use the repack on an existing database:P

  5. #5
    ZnyX's Avatar Banned
    Reputation
    97
    Join Date
    Jan 2008
    Posts
    324
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I executet it on a clean DB, i'm running Silvermoon myself, and had absolutly not problems executing it at all?. And yeah latruwski i thought of changing that, i was just not to sure about it . I'll try it later, hope it works. What about the first error? The one with

    1074 - Column length too big for column 'regex_ignore_if_matched' (max = 255); use BLOB or TEXT instead

    Anything to do there? Or?

  6. #6
    latruwski's Avatar Banned
    Reputation
    647
    Join Date
    Dec 2006
    Posts
    2,456
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    this is the one from ncdb (latest)

    Code:
    /*!40100 SET CHARACTER SET cp1250*/;
    /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0*/;
    
    
    DROP TABLE IF EXISTS `wordfilter_character_names`;
    
    #
    # Table structure for table 'wordfilter_character_names'
    #
    
    CREATE TABLE `wordfilter_character_names` (
      `regex_match` varchar(500) NOT NULL,
      `regex_ignore_if_matched` varchar(500) NOT NULL default ''
    ) ENGINE=MyISAM /*!40100 DEFAULT CHARSET=latin1*/;
    
    
    
    #
    # Dumping data for table 'wordfilter_character_names'
    #
    
    # (No data found.)
    
    /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS*/;

  7. #7
    ZnyX's Avatar Banned
    Reputation
    97
    Join Date
    Jan 2008
    Posts
    324
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks a lot latruwski, the change of

    CREATE TABLE `wordfilter_character_names` (
    `regex_match` varchar(500) NOT NULL,
    `regex_ignore_if_matched` varchar(500) NOT NULL default ''
    ) ENGINE=InnoDB DEFAULT CHARSET=latin1;

    To CREATE TABLE `wordfilter_character_names` (
    `regex_match` varchar(255) NOT NULL,
    `regex_ignore_if_matched` varchar(255) NOT NULL default ''
    ) ENGINE=InnoDB DEFAULT CHARSET=latin1;

    Worked, apriciate it.

    EDIT: 1x rep, sorry i can't give anymore , you were very helpfull.

  8. #8
    latruwski's Avatar Banned
    Reputation
    647
    Join Date
    Dec 2006
    Posts
    2,456
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Zenneth View Post
    or use it on an empty database!

    It will solve the promb and latru i think u are wrong... its a sql promblem that cant read it

    (i may be wrong too... but i had the same prob like 2 weeks before):P
    thah i guess i was right after all :P

    anyhow no problem m8, we are here to help

    grtz

Similar Threads

  1. ArcEmu World + Navicat Errors
    By Bf2142 in forum WoW EMU Questions & Requests
    Replies: 2
    Last Post: 06-10-2009, 02:53 PM
  2. Navicat error
    By savolion in forum WoW EMU Questions & Requests
    Replies: 5
    Last Post: 02-19-2009, 10:49 PM
  3. Very Awkward Navicat Error?
    By Shadowlurk in forum WoW EMU Questions & Requests
    Replies: 2
    Last Post: 10-25-2008, 11:59 AM
  4. Navicat Error: Duplicate Entry??
    By dragonowner in forum WoW EMU Questions & Requests
    Replies: 7
    Last Post: 08-28-2008, 11:03 AM
  5. Weird Vendor Error
    By Dr. Livingstone in forum WoW EMU Questions & Requests
    Replies: 9
    Last Post: 08-26-2008, 07:26 PM
All times are GMT -5. The time now is 03:13 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search