Скомпилил ядро, но не могу его запустить... База чаров которая была в исходниках не заливается :ОО Взял базу с другой сборки Лог запуска worldserver:
Code
2012-10-03 19:16:20 Using configuration file worldserver.conf. 2012-10-03 19:16:20 Using SSL version: OpenSSL 1.0.1c 10 May 2012 (library: OpenSSL 1.0.1c 10 May 2012) 2012-10-03 19:16:20 Using ACE version: 5.8.3 2012-10-03 19:16:20 rev: v1.0 2012-10-03 19:16:20 TrinityCore 2012-10-03 19:16:21 ERROR: DatabasePool characters NOT opened. There were errors opening the MySQL connections. Check your SQLDriverLogFile for specific errors. 2012-10-03 19:16:21 ERROR: Cannot connect to Character database 127.0.0.1;3306;trinity;trinity;characters
SQLDriverLogFile:
Code
2012-10-03 19:16:20 Opening DatabasePool 'world'. Asynchronous connections: 1, synchronous connections: 1. 2012-10-03 19:16:20 [WARNING] MySQL client/server version mismatch; may conflict with behaviour of prepared statements. 2012-10-03 19:16:20 [WARNING] MySQL client/server version mismatch; may conflict with behaviour of prepared statements. 2012-10-03 19:16:21 DatabasePool 'world' opened successfully. 2 total connections running. 2012-10-03 19:16:21 Opening DatabasePool 'characters'. Asynchronous connections: 1, synchronous connections: 2. 2012-10-03 19:16:21 [WARNING] MySQL client/server version mismatch; may conflict with behaviour of prepared statements. 2012-10-03 19:16:21 [ERROR]: In mysql_stmt_prepare() id: 51, sql: "SELECT creatorGuid, giftCreatorGuid, count, duration, charges, flags, enchantments, randomPropertyId, durability, playedTime, text, bag, slot, item, itemEntry, displayId FROM character_inventory ci JOIN item_instance ii ON ci.item = ii.guid WHERE ci.guid = ? ORDER BY bag, slot" 2012-10-03 19:16:21 [ERROR]: Unknown column 'displayId' in 'field list' 2012-10-03 19:16:21 [ERROR]: In mysql_stmt_prepare() id: 97, sql: "REPLACE INTO item_instance (itemEntry, displayId, owner_guid, creatorGuid, giftCreatorGuid, count, duration, charges, flags, enchantments, randomPropertyId, durability, playedTime, text, guid) VALUES (?, 0, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)" 2012-10-03 19:16:21 [ERROR]: Unknown column 'displayId' in 'field list' 2012-10-03 19:16:21 [ERROR]: In mysql_stmt_prepare() id: 98, sql: "UPDATE item_instance SET itemEntry = ?, displayId = ?, owner_guid = ?, creatorGuid = ?, giftCreatorGuid = ?, count = ?, duration = ?, charges = ?, flags = ?, enchantments = ?, randomPropertyId = ?, durability = ?, playedTime = ?, text = ? WHERE guid = ?" 2012-10-03 19:16:21 [ERROR]: Unknown column 'displayId' in 'field list' 2012-10-03 19:16:21 [WARNING] MySQL client/server version mismatch; may conflict with behaviour of prepared statements. 2012-10-03 19:16:21 [WARNING] MySQL client/server version mismatch; may conflict with behaviour of prepared statements.
Ошибки при заливке базы characters с исходников:
Code
[Err] 1005 - Can't create table 'characters.account_data' (errno: 121) [Err] -- MySQL dump 10.13 Distrib 5.5.21, for Win64 (x86) -- -- Host: localhost Database: characters -- ------------------------------------------------------ -- Server version 5.5.21
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
-- -- Table structure for table `account_data` --
DROP TABLE IF EXISTS `account_data`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `account_data` ( `accountId` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Account Identifier', `type` tinyint(3) unsigned NOT NULL DEFAULT '0', `time` int(10) unsigned NOT NULL DEFAULT '0', `data` blob NOT NULL, PRIMARY KEY (`accountId`,`type`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `account_data` --
LOCK TABLES `account_data` WRITE; /*!40000 ALTER TABLE `account_data` DISABLE KEYS */; /*!40000 ALTER TABLE `account_data` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `account_instance_times` --
DROP TABLE IF EXISTS `account_instance_times`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `account_instance_times` ( `accountId` int(10) unsigned NOT NULL, `instanceId` int(10) unsigned NOT NULL DEFAULT '0', `releaseTime` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`accountId`,`instanceId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `account_instance_times` --
LOCK TABLES `account_instance_times` WRITE; /*!40000 ALTER TABLE `account_instance_times` DISABLE KEYS */; /*!40000 ALTER TABLE `account_instance_times` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `account_tutorial` --
DROP TABLE IF EXISTS `account_tutorial`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `account_tutorial` ( `accountId` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Account Identifier', `tut0` int(10) unsigned NOT NULL DEFAULT '0', `tut1` int(10) unsigned NOT NULL DEFAULT '0', `tut2` int(10) unsigned NOT NULL DEFAULT '0', `tut3` int(10) unsigned NOT NULL DEFAULT '0', `tut4` int(10) unsigned NOT NULL DEFAULT '0', `tut5` int(10) unsigned NOT NULL DEFAULT '0', `tut6` int(10) unsigned NOT NULL DEFAULT '0', `tut7` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`accountId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `account_tutorial` --
LOCK TABLES `account_tutorial` WRITE; /*!40000 ALTER TABLE `account_tutorial` DISABLE KEYS */; /*!40000 ALTER TABLE `account_tutorial` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `addons` --
DROP TABLE IF EXISTS `addons`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `addons` ( `name` varchar(120) NOT NULL DEFAULT '', `crc` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Addons'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `addons` --
LOCK TABLES `addons` WRITE; /*!40000 ALTER TABLE `addons` DISABLE KEYS */; /*!40000 ALTER TABLE `addons` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `arena_team` --
DROP TABLE IF EXISTS `arena_team`; /*!40101 SET @ [Err] 1050 - Table 'character_account_data' already exists [Err] CREATE TABLE `character_account_data` ( `guid` int(10) unsigned NOT NULL DEFAULT '0', `type` tinyint(3) unsigned NOT NULL DEFAULT '0', `time` int(10) unsigned NOT NULL DEFAULT '0', `data` blob NOT NULL, PRIMARY KEY (`guid`,`type`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `character_account_data` --
LOCK TABLES `character_account_data` WRITE; /*!40000 ALTER TABLE `character_account_data` DISABLE KEYS */; /*!40000 ALTER TABLE `character_account_data` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `character_achievement` --
DROP TABLE IF EXISTS `character_achievement`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `character_achievement` ( `guid` int(10) unsigned NOT NULL, `achievement` smallint(5) unsigned NOT NULL, `date` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`guid`,`achievement`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `character_achievement` --
LOCK TABLES `character_achievement` WRITE; /*!40000 ALTER TABLE `character_achievement` DISABLE KEYS */; /*!40000 ALTER TABLE `character_achievement` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `character_achievement_progress` --
DROP TABLE IF EXISTS `character_achievement_progress`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `character_achievement_progress` ( `guid` int(10) unsigned NOT NULL, `criteria` smallint(5) unsigned NOT NULL, `counter` int(10) unsigned NOT NULL, `date` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`guid`,`criteria`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `character_achievement_progress` --
LOCK TABLES `character_achievement_progress` WRITE; /*!40000 ALTER TABLE `character_achievement_progress` DISABLE KEYS */; /*!40000 ALTER TABLE `character_achievement_progress` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `character_action` --
DROP TABLE IF EXISTS `character_action`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `character_action` ( `guid` int(10) unsigned NOT NULL DEFAULT '0', `spec` tinyint(3) unsigned NOT NULL DEFAULT '0', `button` tinyint(3) unsigned NOT NULL DEFAULT '0', `action` int(10) unsigned NOT NULL DEFAULT '0', `type` tinyint(3) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`guid`,`spec`,`button`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `character_action` --
LOCK TABLES `character_action` WRITE; /*!40000 ALTER TABLE `character_action` DISABLE KEYS */; /*!40000 ALTER TABLE `character_action` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `character_arena_stats` --
DROP TABLE IF EXISTS `character_arena_stats`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `character_arena_stats` ( `guid` int(10) NOT NULL, `slot` tinyint(3) NOT NULL, `matchMakerRating` smallint(5) NOT NULL, PRIMARY KEY (`guid`,`slot`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `character_arena_stats` --
LOCK TABLES `character_arena_stats` WRITE; /*!40000 ALTER TABLE `character_arena_stats` DISABLE KEYS */; /*!40000 ALTER TABLE `character_arena_stats` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `character_aura` --
DROP TABLE IF EXISTS `character_aura`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `character_aura` ( `guid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier', `caster_guid` bigint(2 [Err] 1005 - Can't create table 'characters.character_glyphs' (errno: 121) [Err] /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `character_gifts` --
LOCK TABLES `character_gifts` WRITE; /*!40000 ALTER TABLE `character_gifts` DISABLE KEYS */; /*!40000 ALTER TABLE `character_gifts` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `character_glyphs` --
DROP TABLE IF EXISTS `character_glyphs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `character_glyphs` ( `guid` int(10) unsigned NOT NULL, `spec` tinyint(3) unsigned NOT NULL DEFAULT '0', `glyph1` smallint(5) unsigned NOT NULL DEFAULT '0', `glyph2` smallint(5) unsigned DEFAULT '0', `glyph3` smallint(5) unsigned DEFAULT '0', `glyph4` smallint(5) unsigned DEFAULT '0', `glyph5` smallint(5) unsigned DEFAULT '0', `glyph6` smallint(5) unsigned DEFAULT '0', PRIMARY KEY (`guid`,`spec`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `character_glyphs` --
LOCK TABLES `character_glyphs` WRITE; /*!40000 ALTER TABLE `character_glyphs` DISABLE KEYS */; /*!40000 ALTER TABLE `character_glyphs` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `character_homebind` --
DROP TABLE IF EXISTS `character_homebind`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `character_homebind` ( `guid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier', `mapId` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Map Identifier', `zoneId` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Zone Identifier', `posX` float NOT NULL DEFAULT '0', `posY` float NOT NULL DEFAULT '0', `posZ` float NOT NULL DEFAULT '0', PRIMARY KEY (`guid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `character_homebind` --
LOCK TABLES `character_homebind` WRITE; /*!40000 ALTER TABLE `character_homebind` DISABLE KEYS */; /*!40000 ALTER TABLE `character_homebind` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `character_instance` --
DROP TABLE IF EXISTS `character_instance`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `character_instance` ( `guid` int(10) unsigned NOT NULL DEFAULT '0', `instance` int(10) unsigned NOT NULL DEFAULT '0', `permanent` tinyint(3) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`guid`,`instance`), KEY `instance` (`instance`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `character_instance` --
LOCK TABLES `character_instance` WRITE; /*!40000 ALTER TABLE `character_instance` DISABLE KEYS */; /*!40000 ALTER TABLE `character_instance` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `character_inventory` --
DROP TABLE IF EXISTS `character_inventory`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `character_inventory` ( `guid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier', `bag` int(10) unsigned NOT NULL DEFAULT '0', `slot` tinyint(3) unsigned NOT NULL DEFAULT '0', `item` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Item Global Unique Identifier', PRIMARY KEY (`item`), UNIQUE KEY `guid` (`guid`,`bag`,`slot`), KEY `idx_guid` (`guid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `character_inventory` --
LOCK TABLES `character_inventory` WRITE; /*!40000 ALTER TABLE `character_inventory` DISABLE KEYS */; /*!40000 ALTER TABLE `character_inventory` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `character_pet` --
DROP TABLE IF EXISTS `character_pet`; /*!40101 SET @saved_cs_client = @@character_set_client */; / [Err] 1005 - Can't create table 'characters.character_reputation' (errno: 121) [Err] -- -- Dumping data for table `character_queststatus_weekly` --
LOCK TABLES `character_queststatus_weekly` WRITE; /*!40000 ALTER TABLE `character_queststatus_weekly` DISABLE KEYS */; /*!40000 ALTER TABLE `character_queststatus_weekly` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `character_reputation` --
DROP TABLE IF EXISTS `character_reputation`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `character_reputation` ( `guid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier', `faction` smallint(5) unsigned NOT NULL DEFAULT '0', `standing` int(11) NOT NULL DEFAULT '0', `flags` smallint(5) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`guid`,`faction`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `character_reputation` --
LOCK TABLES `character_reputation` WRITE; /*!40000 ALTER TABLE `character_reputation` DISABLE KEYS */; /*!40000 ALTER TABLE `character_reputation` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `character_skills` --
DROP TABLE IF EXISTS `character_skills`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `character_skills` ( `guid` int(10) unsigned NOT NULL COMMENT 'Global Unique Identifier', `skill` smallint(5) unsigned NOT NULL, `value` smallint(5) unsigned NOT NULL, `max` smallint(5) unsigned NOT NULL, PRIMARY KEY (`guid`,`skill`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `character_skills` --
LOCK TABLES `character_skills` WRITE; /*!40000 ALTER TABLE `character_skills` DISABLE KEYS */; /*!40000 ALTER TABLE `character_skills` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `character_social` --
DROP TABLE IF EXISTS `character_social`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `character_social` ( `guid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Character Global Unique Identifier', `friend` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Friend Global Unique Identifier', `flags` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'Friend Flags', `note` varchar(48) NOT NULL DEFAULT '' COMMENT 'Friend Note', PRIMARY KEY (`guid`,`friend`,`flags`), KEY `friend` (`friend`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `character_social` --
LOCK TABLES `character_social` WRITE; /*!40000 ALTER TABLE `character_social` DISABLE KEYS */; /*!40000 ALTER TABLE `character_social` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `character_spell` --
DROP TABLE IF EXISTS `character_spell`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `character_spell` ( `guid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier', `spell` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Spell Identifier', `active` tinyint(3) unsigned NOT NULL DEFAULT '1', `disabled` tinyint(3) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`guid`,`spell`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `character_spell` --
LOCK TABLES `character_spell` WRITE; /*!40000 ALTER TABLE `character_spell` DISABLE KEYS */; /*!40000 ALTER TABLE `character_spell` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `character_spell_cooldown` --
DROP TABLE IF EXISTS `character_spell_cooldown`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `character_spell_cooldown` ( `guid` int(10) unsigned NOT NULL DEFAULT '0' C [Err] 1146 - Table 'characters.game_event_condition_save' doesn't exist [Err] /*!40000 ALTER TABLE `game_event_condition_save` DISABLE KEYS */; /*!40000 ALTER TABLE `game_event_condition_save` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `game_event_save` --
DROP TABLE IF EXISTS `game_event_save`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `game_event_save` ( `eventEntry` tinyint(3) unsigned NOT NULL, `state` tinyint(3) unsigned NOT NULL DEFAULT '1', `next_start` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`eventEntry`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `game_event_save` --
LOCK TABLES `game_event_save` WRITE; /*!40000 ALTER TABLE `game_event_save` DISABLE KEYS */; /*!40000 ALTER TABLE `game_event_save` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `gameobject_respawn` --
DROP TABLE IF EXISTS `gameobject_respawn`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `gameobject_respawn` ( `guid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier', `respawnTime` int(10) unsigned NOT NULL DEFAULT '0', `mapId` smallint(10) unsigned NOT NULL DEFAULT '0', `instanceId` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Instance Identifier', PRIMARY KEY (`guid`,`instanceId`), KEY `idx_instance` (`instanceId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Grid Loading System'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `gameobject_respawn` --
LOCK TABLES `gameobject_respawn` WRITE; /*!40000 ALTER TABLE `gameobject_respawn` DISABLE KEYS */; /*!40000 ALTER TABLE `gameobject_respawn` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `gm_subsurveys` --
DROP TABLE IF EXISTS `gm_subsurveys`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `gm_subsurveys` ( `surveyId` int(10) unsigned NOT NULL AUTO_INCREMENT, `subsurveyId` int(10) unsigned NOT NULL DEFAULT '0', `rank` int(10) unsigned NOT NULL DEFAULT '0', `comment` text NOT NULL, PRIMARY KEY (`surveyId`,`subsurveyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `gm_subsurveys` --
LOCK TABLES `gm_subsurveys` WRITE; /*!40000 ALTER TABLE `gm_subsurveys` DISABLE KEYS */; /*!40000 ALTER TABLE `gm_subsurveys` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `gm_surveys` --
DROP TABLE IF EXISTS `gm_surveys`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `gm_surveys` ( `surveyId` int(10) unsigned NOT NULL AUTO_INCREMENT, `guid` int(10) unsigned NOT NULL DEFAULT '0', `mainSurvey` int(10) unsigned NOT NULL DEFAULT '0', `overallComment` longtext NOT NULL, `createTime` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`surveyId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `gm_surveys` --
LOCK TABLES `gm_surveys` WRITE; /*!40000 ALTER TABLE `gm_surveys` DISABLE KEYS */; /*!40000 ALTER TABLE `gm_surveys` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `gm_tickets` --
DROP TABLE IF EXISTS `gm_tickets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `gm_tickets` ( `ticketId` int(10) unsigned NOT NULL AUTO_INCREMENT, `guid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier of ticket creator', `name` varchar(12) NOT NULL COMMENT 'Name of ticket creator', `message` text NOT NULL, `createTime` int(10) unsigned NOT NULL DEFAULT '0', `mapId` smallint(5) unsigned NOT NULL DEFAULT '0', `posX` float NOT NULL DEFAULT '0', `posY` float NOT NULL DEFAULT '0', `posZ` float NOT NULL DEFAUL [Err] 1005 - Can't create table 'characters.guild_bank_right' (errno: 121) [Err] /*!40000 ALTER TABLE `guild_bank_item` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `guild_bank_right` --
DROP TABLE IF EXISTS `guild_bank_right`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `guild_bank_right` ( `guildid` int(10) unsigned NOT NULL DEFAULT '0', `TabId` tinyint(3) unsigned NOT NULL DEFAULT '0', `rid` tinyint(3) unsigned NOT NULL DEFAULT '0', `gbright` tinyint(3) unsigned NOT NULL DEFAULT '0', `SlotPerDay` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`guildid`,`TabId`,`rid`), KEY `guildid_key` (`guildid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `guild_bank_right` --
LOCK TABLES `guild_bank_right` WRITE; /*!40000 ALTER TABLE `guild_bank_right` DISABLE KEYS */; /*!40000 ALTER TABLE `guild_bank_right` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `guild_bank_tab` --
DROP TABLE IF EXISTS `guild_bank_tab`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `guild_bank_tab` ( `guildid` int(10) unsigned NOT NULL DEFAULT '0', `TabId` tinyint(3) unsigned NOT NULL DEFAULT '0', `TabName` varchar(16) NOT NULL DEFAULT '', `TabIcon` varchar(100) NOT NULL DEFAULT '', `TabText` varchar(500) DEFAULT NULL, PRIMARY KEY (`guildid`,`TabId`), KEY `guildid_key` (`guildid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `guild_bank_tab` --
LOCK TABLES `guild_bank_tab` WRITE; /*!40000 ALTER TABLE `guild_bank_tab` DISABLE KEYS */; /*!40000 ALTER TABLE `guild_bank_tab` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `guild_eventlog` --
DROP TABLE IF EXISTS `guild_eventlog`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `guild_eventlog` ( `guildid` int(10) unsigned NOT NULL COMMENT 'Guild Identificator', `LogGuid` int(10) unsigned NOT NULL COMMENT 'Log record identificator - auxiliary column', `EventType` tinyint(3) unsigned NOT NULL COMMENT 'Event type', `PlayerGuid1` int(10) unsigned NOT NULL COMMENT 'Player 1', `PlayerGuid2` int(10) unsigned NOT NULL COMMENT 'Player 2', `NewRank` tinyint(3) unsigned NOT NULL COMMENT 'New rank(in case promotion/demotion)', `TimeStamp` int(10) unsigned NOT NULL COMMENT 'Event UNIX time', PRIMARY KEY (`guildid`,`LogGuid`), KEY `Idx_PlayerGuid1` (`PlayerGuid1`), KEY `Idx_PlayerGuid2` (`PlayerGuid2`), KEY `Idx_LogGuid` (`LogGuid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Guild Eventlog'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `guild_eventlog` --
LOCK TABLES `guild_eventlog` WRITE; /*!40000 ALTER TABLE `guild_eventlog` DISABLE KEYS */; /*!40000 ALTER TABLE `guild_eventlog` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `guild_member` --
DROP TABLE IF EXISTS `guild_member`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `guild_member` ( `guildid` int(10) unsigned NOT NULL COMMENT 'Guild Identificator', `guid` int(10) unsigned NOT NULL, `rank` tinyint(3) unsigned NOT NULL, `pnote` varchar(31) NOT NULL DEFAULT '', `offnote` varchar(31) NOT NULL DEFAULT '', `BankResetTimeMoney` int(10) unsigned NOT NULL DEFAULT '0', `BankRemMoney` int(10) unsigned NOT NULL DEFAULT '0', `BankResetTimeTab0` int(10) unsigned NOT NULL DEFAULT '0', `BankRemSlotsTab0` int(10) unsigned NOT NULL DEFAULT '0', `BankResetTimeTab1` int(10) unsigned NOT NULL DEFAULT '0', `BankRemSlotsTab1` int(10) unsigned NOT NULL DEFAULT '0', `BankResetTimeTab2` int(10) unsigned NOT NULL DEFAULT '0', `BankRemSlotsTab2` int(10) unsigned NOT NULL DEFAULT '0', `BankResetTimeTab3` int(10) unsigned NOT NULL DEFAULT '0', `BankRemSlotsTab3` int(10) unsigned NOT NULL DEFAULT '0', `BankRese [Err] 1005 - Can't create table 'characters.lfg_data' (errno: 121) [Err] UNLOCK TABLES;
-- -- Table structure for table `lfg_data` --
DROP TABLE IF EXISTS `lfg_data`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lfg_data` ( `guid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier', `dungeon` int(10) unsigned NOT NULL DEFAULT '0', `state` tinyint(3) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`guid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='LFG Data'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `lfg_data` --
LOCK TABLES `lfg_data` WRITE; /*!40000 ALTER TABLE `lfg_data` DISABLE KEYS */; /*!40000 ALTER TABLE `lfg_data` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `mail` --
DROP TABLE IF EXISTS `mail`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mail` ( `id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Identifier', `messageType` tinyint(3) unsigned NOT NULL DEFAULT '0', `stationery` tinyint(3) NOT NULL DEFAULT '41', `mailTemplateId` smallint(5) unsigned NOT NULL DEFAULT '0', `sender` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Character Global Unique Identifier', `receiver` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Character Global Unique Identifier', `subject` longtext, `body` longtext, `has_items` tinyint(3) unsigned NOT NULL DEFAULT '0', `expire_time` int(10) unsigned NOT NULL DEFAULT '0', `deliver_time` int(10) unsigned NOT NULL DEFAULT '0', `money` int(10) unsigned NOT NULL DEFAULT '0', `cod` int(10) unsigned NOT NULL DEFAULT '0', `checked` tinyint(3) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_receiver` (`receiver`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Mail System'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `mail` --
LOCK TABLES `mail` WRITE; /*!40000 ALTER TABLE `mail` DISABLE KEYS */; /*!40000 ALTER TABLE `mail` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `mail_items` --
DROP TABLE IF EXISTS `mail_items`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mail_items` ( `mail_id` int(10) unsigned NOT NULL DEFAULT '0', `item_guid` int(10) unsigned NOT NULL DEFAULT '0', `receiver` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Character Global Unique Identifier', PRIMARY KEY (`item_guid`), KEY `idx_receiver` (`receiver`), KEY `idx_mail_id` (`mail_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `mail_items` --
LOCK TABLES `mail_items` WRITE; /*!40000 ALTER TABLE `mail_items` DISABLE KEYS */; /*!40000 ALTER TABLE `mail_items` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `pet_aura` --
DROP TABLE IF EXISTS `pet_aura`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `pet_aura` ( `guid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier', `caster_guid` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT 'Full Global Unique Identifier', `spell` mediumint(8) unsigned NOT NULL DEFAULT '0', `effect_mask` tinyint(3) unsigned NOT NULL DEFAULT '0', `recalculate_mask` tinyint(3) unsigned NOT NULL DEFAULT '0', `stackcount` tinyint(3) unsigned NOT NULL DEFAULT '1', `amount0` mediumint(8) NOT NULL, `amount1` mediumint(8) NOT NULL, `amount2` mediumint(8) NOT NULL, `base_amount0` mediumint(8) NOT NULL, `base_amount1` mediumint(8) NOT NULL, `base_amount2` mediumint(8) NOT NULL, `maxduration` int(11) NOT NULL DEFAULT '0', `remaintime` int(11) NOT NULL DEFAULT '0', `remaincharges` tinyint(3) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`guid`,`spell`,`effect_mask`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Pet System'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for t [Err] 1005 - Can't create table 'characters.worldstates' (errno: 121) [Err] -- -- Table structure for table `worldstates` --
DROP TABLE IF EXISTS `worldstates`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `worldstates` ( `entry` int(10) unsigned NOT NULL DEFAULT '0', `value` int(10) unsigned NOT NULL DEFAULT '0', `comment` tinytext, PRIMARY KEY (`entry`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Variable Saves'; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `worldstates` --
LOCK TABLES `worldstates` WRITE; /*!40000 ALTER TABLE `worldstates` DISABLE KEYS */; INSERT INTO `worldstates` VALUES (20001,0,'NextArenaPointDistributionTime'),(20002,0,'NextWeeklyQuestResetTime'),(20003,0,'NextBGRandomDailyResetTime'),(20004,0,'cleaning_fl ags'); /*!40000 ALTER TABLE `worldstates` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
ведь та база которая с исходниками заливается на ура
Сначало заливалась без ошибок, но не мог запустить и потом уже решил взять с другой сборки и все равно не запустилось. Но теперь базу с исходников залить не могу -_-
Сообщение # 7 отредактировано Terror68 - Среда, 03.10.2012, 19:52
извеняюсь, но что бы тему не создовать я кину сюда свою ошибку
2012-10-04 21:01:29 Deleting expired bans... 2012-10-04 21:01:29 Calculate next daily quest reset time... 2012-10-04 21:01:29 Calculate next weekly quest reset time... 2012-10-04 21:01:29 Calculate random battleground reset time... 2012-10-04 21:01:29 Loading character name data 2012-10-04 21:01:29 ERROR: No character name data loaded, empty query 2012-10-04 21:01:29 Initialize AuctionHouseBot... 2012-10-04 21:01:29 AuctionHouseBot and AuctionHouseBuyer have been loaded. 2012-10-04 21:01:29 2012-10-04 21:01:29 WORLD: World initialized in 0 minutes 30 seconds 2012-10-04 21:01:29 2012-10-04 21:01:30 worldserver process priority class set to HIGH 2012-10-04 21:01:30 2012-10-04 21:01:30 Max allowed socket connections 1024 2012-10-04 21:01:51 Halting process...
ERROR: Нет данных имя персонажа загружен, пустой запрос
Что это за ошибка такая перевел но мне не о чем не говорит