启动XAMPP服务器时出现上述错误。错误的第二行显示:mysql.event:1个客户端正在使用或未正确关闭表。我要执行3个事件。我检查了事件。对于所有事件,我都有BEGIN和END语句。此错误的含义是什么。有任何建议请。
[ERROR] mysqld.exe: Table '.\mysql\event' is marked as crashed and should be repaired
[Warning] Checking table: '.\mysql\event'
[ERROR] mysql.event: 1 client is using or hasn't closed the table properly
答案 0 :(得分:0)
从PhpMyAdmin执行以下命令来修复此表:
REPAIR TABLE event;
或者如果更多表坏了,请使用以下命令
mysqlcheck -uroot -p --repair --all-databases
在出现提示时提供密码。
干杯!