Jump to content

Recommended Posts

Hy metin2dev!

I have a problem in syserr channel1,game99,db

SYSERR: Aug 26 03:37:48 :: ChildLoop: AsyncSQL: query failed: Table 'log.invalid_server_log' doesn't exist (query: INSERT INTO invalid_server_log(locale_type, log_date, ip, revision) VALUES(25, NOW(), '192.168.16.100', 40250) errno: 1146)

Please help me

Sorry for my bad english.

Link to comment
Share on other sites

DROP TABLE IF EXISTS `invalid_server_log`;
CREATE TABLE `invalid_server_log` (
  `locale_type` int(11) DEFAULT NULL,
  `log_date`  timestamp DEFAULT NULL,
  `ip` varchar(32) DEFAULT NULL,
  `revision` int(11) DEFAULT NULL 
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=big5_bin;

Try this :)

 

[Err] 1067 - Invalid default value for 'log_date'

Link to comment
Share on other sites

DROP TABLE IF EXISTS `invalid_server_log`;
CREATE TABLE `invalid_server_log` (
  `locale_type` int(11) DEFAULT NULL,
  `log_date` timestamp NULL DEFAULT NULL,
  `ip` varchar(32) DEFAULT NULL,
  `revision` int(11) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=big5_bin;

Try it now..

 

[Err] 1253 - COLLATION 'big5_bin' is not valid for CHARACTER SET 'latin1'

Link to comment
Share on other sites

DROP TABLE IF EXISTS `invalid_server_log`;
CREATE TABLE `invalid_server_log` (
`locale_type` int(11) DEFAULT NULL,
`log_date` timestamp NULL DEFAULT NULL,
`ip` varchar(32) DEFAULT NULL,
`revision` int(11) DEFAULT NULL
)ENGINE=MyISAM DEFAULT CHARSET=latin1;

My bad , now it works perfectly.

 

Thanks man,it works perfectly now.

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

Announcements



×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.