I need to delete a set of MySQL tables for a client in a manner that's compliant with the Department of Defense Data Clearing and Sanitizing Standard. I've a list of acceptable tools including wipe, but I'm not clear on how I might be able to drop a MySQL table in such a manner.
Is there a way to tell MySQL to drop the table without deleting the physical files on disk, so I can securely overwrite them manually?
I don't believe there is any way to securely delete a table in MySQL, or to delete it without removing the file.
There are a few options I can think of though:
Disclaimer: I have not tested any of these methods - use at your own risk and make sure your backups are good.