MiGueLiT0 Posted June 20, 2015 Report Share Posted June 20, 2015 (edited) Hola gente de zone, les vengo a pedir una pequeña ayuda ya que nunca me habia pasado este error, lo que me sucede es que me conecto con mi pj "GM" voy a leviar o me subo de level, voy a arañas2 y todo lo que uno puedo hacer dentro del servidor, luego al desconectarme, y luego al volver a conectarme "obviamente mas tarde" aparezco en el puente con el LVL 1 pero si con las cosas que ya habia obtenido. A que se puede deber esto? Gracias de antemano Sysser: SYSERR: Jun 19 18:22:38 :: ChildLoop: AsyncSQL: query failed: Data too long for column 'hint' at row 1 (query: INSERT DELAYED INTO log (type, time, who, x, y, what, how, hint, ip) VALUES('CHARACTER', NOW(), 282, 959966, 273300, 0, 'LOGOUT', 'x.x.x.x 1977797281 1 41 -182914', 'x.x.x.x') errno: 1406) Edited June 20, 2015 by MiGueLiT0 Link to comment Share on other sites More sharing options...
MiGueLiT0 Posted June 20, 2015 Author Report Share Posted June 20, 2015 #Agregado Sysser Link to comment Share on other sites More sharing options...
MiGueLiT0 Posted June 20, 2015 Author Report Share Posted June 20, 2015 #SOLUCIONADO: -- ---------------------------- -- Table structure for `log` -- ---------------------------- DROP TABLE IF EXISTS `log`; CREATE TABLE `log` ( `ID` int(11) DEFAULT NULL, `type` varchar(20) COLLATE big5_bin DEFAULT NULL, `time` datetime DEFAULT NULL, `who` int(11) DEFAULT NULL, `x` int(11) DEFAULT NULL, `y` int(11) DEFAULT NULL, `what` int(11) DEFAULT NULL, `how` varchar(20) COLLATE big5_bin DEFAULT NULL, `hint` varchar(20) COLLATE big5_bin DEFAULT NULL, `ip` varchar(30) COLLATE big5_bin DEFAULT NULL, `vnum` int(50) DEFAULT NULL ) ENGINE=MyISAM DEFAULT CHARSET=big5 COLLATE=big5_bin; -- ---------------------------- -- Records of log -- ---------------------------- Esa es la solucion. Link to comment Share on other sites More sharing options...
Guest Caes Posted June 21, 2015 Report Share Posted June 21, 2015 Gracias por publicar la solución, seguro a muchos les será de utilidad. La clave está en identificar el mensaje de error: query failed: Data too long for column 'hint' Significa que debes cambiar el tipo de dato para esa columna a uno de mayor tamaño, o no se podrá ejecutar la consulta, ni siquiera se debe borrar la tabla entera para hacerlo, solo se edita la tabla y se cambia el tipo de dato de esa columna. Movido a temas resueltos. MiGueLiT0 1 Link to comment Share on other sites More sharing options...
Recommended Posts