Здравствуйте, подскажите что что за ошибка? Появилась когда заливаю бд на локальный сервер через navicat. Я в sql пока вообще деревянный.Понял что только ошибка в кодировке...а как исправить не знаю
[Err] 1146 - Table 'lineage.characters' doesn't exist
[Err] SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for characters
-- ----------------------------
ALTER TABLE `characters` ADD `lastteleport` DECIMAL( 20, 0 ) NULL DEFAULT NULL;
-- ----------------------------
-- Table structure for stress_auto_rb
-- ----------------------------
CREATE TABLE `stress_auto_rb` (
`id` int(11) NOT NULL auto_increment,
`InvId` int(11) NOT NULL DEFAULT '0',
`RND` varchar( NOT NULL,
`charId` int(11) NOT NULL default '0',
`OutSum` double(10,2) NOT NULL default '0.00',
`OutCount` int(11) NOT NULL default '0',
`trans_date` int(11) NOT NULL default '0',
`user_ip` varchar(30) NOT NULL default '',
`stage` enum('0','S','E','P','F') NOT NULL default '0',
`success` enum('0','1') NOT NULL default '0',
`comment` text NOT NULL,
PRIMARY KEY (`id`),
KEY `InvId` (`InvId`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for stress_referal
-- ----------------------------
CREATE TABLE `stress_referal` (
`id` int(11) NOT NULL auto_increment,
`account_referer` varchar(100) NOT NULL,
`account_name` varchar(100) NOT NULL,
`charId` int(11) NOT NULL default '0',
`char_name` varchar(30) NOT NULL,
`success` enum('0','1') NOT NULL default '0',
`date` timestamp NOT NULL default '0000-00-00 00:00:00',
PRIMARY KEY (`id`),
KEY `account_referer` (`account_referer`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
[Msg] Finished - Unsuccessfully
--------------------------------------------------