Monday 18 September 2006 2:30:28 pm
Hi Ulrich, As Claudia said, dropping ezsession is not much of a problem but dropping ezcontentobject_version was probaly not a good idea so I think your backup might come in handy :) One easy way to repair your tables, is to use the tools shipped with mysql: ~ # mysqlrepair -A -e -v --auto-repair -p Issuing this as root will prompt for the root password (-p) of your database instance and then do an extended (-e) check and automagically repair (--auto-repair) of all (-A) tables in the database, verbosley (-v) showing what is happening. If you don't want to do it from the commandline but have access to phpMyAdmin then you can mark all tables in the database you have trouble with and select 'repair'. This will then do almost the same as above. ...and as always. Don't forget to take backups of all your databases before you do anything of this. :)
|