[quote="Mr.Yuck"]
OK, I know opencaching.us is the old OCPL code, but this should be a pretty easy MySQL question for some of you out there. Last week, seemingly randomly, 13 GB+ error logs were being written to the OCUS server, filling up our disk a few times. We have FINALLY patched this. Our database was corrupted when the disk got full, and the server crashed a couple of times.
We get 100 or so OKAPI error emails per day. Very early on, when we thought we patched the error log issue (but we had not), Wrygiel told me I should drop the table, and recreate it based on http://opencaching.pl/okapi/devel/dbstruct When I told him I didn't know how to do that, he said "that's OK, I just did it for you". It worked fine, until the large error logs came back and filled the disk.
So I know I need to do this, but how do I do it? Wrygiel is offline for several days, in his words, and I haven't heard from SP2ONG. I would like our admins to not receive 300 OKAPI error emails over the weekend.

[/quote]
have you tried to repair the corrupted table(s)?
assuming your database-tables are myiasam...
if you logon on the server-console, cd into the database-folder (usually /var/lib/mysql/<database-name>) check the MYI-file of the corrupted table with "myisamchk" i.e. "myisamchk <table-name>.MYI", if that reports error you can try to repair it with the -r option (myisamchk -r <table-name>.MYI)...
check more than one time after repairing... and/or shutdown the mysql-server before, start after repair and check again... and check the /var/log/my.log (or similar), there you maby find logs about which tables are corrupt...
i dont know exactly which tables of the okapi could be dropped, so i would not suggest anything, that make it maybe worse...