Jump to content
TrinityCore

Torxbit

Plebs
  • Posts

    3
  • Joined

  • Last visited

Everything posted by Torxbit

  1. When starting the worldserver the import of the world full sql does not contain any data for the table version. This causes the error: Using World DB: Unknown world database. Looking at the sql it contains table structure but no data INSERT. --------------------------------- DROP TABLE IF EXISTS `version`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `version` ( `core_version` varchar(120) NOT NULL DEFAULT '' COMMENT 'Core revision dumped at startup.', `core_revision` varchar(120) DEFAULT NULL, `db_version` varchar(120) DEFAULT NULL COMMENT 'Version of world DB.', `cache_id` int(11) DEFAULT '0', PRIMARY KEY (`core_version`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Version Notes'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `warden_checks` -- DROP TABLE IF EXISTS `warden_checks`; -------------------------------------------- What is the data that belongs in this table?
×
×
  • Create New...