How do I repair an InnoDB table?
First of all stop the server and image the disc. There’s no point only having one shot at this. Then take a look here.
First of all stop the server and image the disc. There’s no point only having one shot at this. Then take a look here.
In general if you don’t need to shrink your datafiles you shouldn’t shrink them at all. This is because “growing” your datafiles on disk is a fairly expensive operation and the more space that MongoDB can allocate in datafiles the less fragmentation you will have. So, you should try to provide as much disk-space as … Read more
If your MySQL process is running, stop it. On Debian: sudo service mysql stop Go to your data folder. On Debian: cd /var/lib/mysql/$DATABASE_NAME Try running: myisamchk -r $TABLE_NAME If that doesn’t work, you can try: myisamchk -r -v -f $TABLE_NAME You can start your MySQL server again. On Debian: sudo service mysql start
According to this: http://www.devcha.com/2008/03/svn-directory-svn-containing-working.html Check-out the folder “blabla” to a different location and then copy its .svn folder back into the original “blabla”.