General error: 1030 Got error 134 from storage engine

Errors like this suddenly started

SQLSTATE[HY000]: General error: 1030 Got error 134 from storage engine

I did not change anything in apache, php, whatever - on server.

Cannot seeany stats currently/ Please help

NZ

Until someone more versed on the specifics of piwik chimes in, I would take a look at the following:

MySQL Bugs: #30290: ERROR 1030 (HY000): Got error 134 from storage engine (MyISAM)

Mentions a repeatable bug when performing queries while insertions are occurring on an myisam table.

Don’t know which version of mysql you have - suggests 5.0.45 on should have this fix.

consider doing a
repair table table_name;
analyze table table_name;

on the selected table.

Thank you - table repair helped!

NZ