vote up 1 vote down star

How can I ensure that all data that I've erase from the db tables, is no longer stored in the mdb files (and others) on the hard disk?

Here's my situation:
My client used to store non-encrypted credit card data, in their database (SQL Server). Thanks to PCI requirements, they now encrypt all that data... However, the mdb file still has some of the old, unencrypted CC written to it.
We've verified that there are no more CC's in the database; we've compressed the database; we've backed it up to a file and restored it anew, to a new database; we've even run sp_cleandb.
Yet, still, when we analyze the persisted file on disk, we still find a handful of non-encrypted CCs - that are not stored in the DB, they're not part of SPs, views, or UDFs, and they do not appear in any table metadata.

So, my question - how can I ensure all the "bad" CC data is gone? Or, more generally, how do I force MSSQL to store only current data, and clean the file from any "garbage"?

flag

4 Answers

vote up 3 vote down check

Based on what you've done, I'd suggest creating a new database, and moving all your data into that.

That way you know you're only working with your new data, and no legacy data will somehow be stored in files.

link|flag
Thanks, was my first thought too - but this is a large, production database, unfortunately its not really an option. – AviD May 16 at 18:57
vote up 0 vote down

script out the database

bulk copy the data out to flat files

look in the flat files for unencrypted data

drop the database

delete the database files with a secure delete: http://www.snapfiles.com/Freeware/security/fwerase.html

create a new database on the server with your scripts

load the data from the flat files

link|flag
vote up 0 vote down

To be absolutely sure:

  • dump your data in some textual format, such as CSV
  • search the CSV for any unencrypted data & remove it
  • create a new empty database
  • load the CSV into the new database
link|flag
Thanks, but not really an option - large production database... – AviD May 16 at 18:59
vote up 1 vote down

Have you tried freeing up unused space in the database files (and log files)?

link|flag
Yep, as I said through compression, backup, sp_clean, etc. Do you know any other mechanism? – AviD May 16 at 18:58

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.