Saturday, February 7, 2009

MySql error

  • Can't open file: 'xxxx.MYI' (errno: 13)
perror 13
OS error code 13: Permission denied
chmod 777 xxxx.MYI
  • Repair MySql database table index file
myisamchk -r -q xxxx.MYI
  • MySQL said: Documentation
    #1114 - The table 'xxxx' is full
table xxxx is too large
  • ERROR 1030 (HY000): Got error 127 from storage engine
perror 127
MySQL error code 127: Record-file is crashed

  • repair table xxx USE_FRM;
Reference
http://bbs.ylqonline.net/redirect.php?tid=332&goto=lastpost

No comments:

Post a Comment