2009년 8월 12일 수요일

MySQL errno: 145 Can't open file 테이블이름.MYI

Enter the MySQL prompt from the shell:
Code:
mysql -u dbuname -h dbhost  -p dbname;
(where dbuser, dbhost and dbname are exactly the same as in your config.php - you will also be prompted for your password, which must also be the same as in config.php)

and try the REPAIR TABLE command:
Code:
repair table 테이블이름;
You can also try from the shell command-line the myisamchk utility:
Code:
myisamchk -r 테이블이름

댓글 없음:

댓글 쓰기