| 解決的方式其實很簡單 ~ 登入到主機後,在 Shell 的環境上連進 MySQL,再下指令去修復它即可 [code lang="html"] dns# ./mysql -u root -p Enter password: mysql> use phpbb Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A
Didn't find any fields in table 'phpbb_sessions' Database changed mysql> repair table phpbb_sessions; +----------------------+--------+----------+------------------------------------------+ | Table | Op | Msg_type | Msg_text | +----------------------+--------+----------+------------------------------------------+ | phpbb.phpbb_sessions | repair | warning | Number of rows changed from 2357 to 2373 | | phpbb.phpbb_sessions | repair | status | OK | +----------------------+--------+----------+------------------------------------------+ 2 rows in set (0.06 sec) [/code] 嘿嘿,終於又回復正常囉
|