Bug #2644 Secure record deletion
Submitted: 4 Feb 2004 15:17
Reporter: Julian Kurz
Status: Open
Category:Server: InnoDB Severity:S4 (Feature request)
Version: OS:Any (all)
Assigned to: Heikki Tuuri Target Version:
Triage: D5 (Feature request)

[4 Feb 2004 15:17] Julian Kurz
Description:
It would be cool to have an option to the DELETE statement, that securely deletes the
records from memory and hard disk, just like these various "wiping"-tools do for files.
This can be done by overwriting it with ones, zeros and random data several times.

How to repeat:
?!

Suggested fix:
Some option like:

DELETE SECURELY FROM mytable WHERE id = 7
[20 Nov 2007 19:10] Sven Müchert
I'd be happy about this, too.

A related thing would be to have a secure update of an existing record, ensuring that
overwritten data is really gone:

UPDATE SECURELY customers SET password="encryptedpasswordstring" WHERE id=1234;