omacron
Technical User
- Feb 5, 2002
- 149
Hi
I don't even know what I am about ask exists or if DB2 does it already. I am being asked to securely delete data from a table. Its a two fold issue; one is to delete only select records from a table, the second is to delete data from a field.
So for example, table Customers
Now normally if I want to delete a customer a simple delete script;
If The customer's name has to be deleted but the record has to stay a simple update command;
Although now I am being asked to "securely" delete the data. The problem is the person that is asking me this is familiar with how just deleting a file from a hard drive is not secure.
Trying to google this topic doesn't come up with a lot of data one way or the other. Any help would be great.
thanks
I don't even know what I am about ask exists or if DB2 does it already. I am being asked to securely delete data from a table. Its a two fold issue; one is to delete only select records from a table, the second is to delete data from a field.
So for example, table Customers
Code:
CustID Name
1234 Bob Smith
1235 John Dole
Code:
delete from Customers where CustID = '1234';
Code:
update customers
set Name = ''
where CustID = '1234';
Although now I am being asked to "securely" delete the data. The problem is the person that is asking me this is familiar with how just deleting a file from a hard drive is not secure.
Trying to google this topic doesn't come up with a lot of data one way or the other. Any help would be great.
thanks