History : today one of our customers asked us if all the data that he had deleted in the program was deleted.
In addition to the planned backups, we shrink the log file once a day, and we use the DELETE command to delete records inside our tables, where necessary.
Although, just for the sake of this, I opened the .mdf file with an editor (using PSPad) and searched for a specific unique piece of data - I was sure - was inside one of the tables.
Problem : I tracked it in a file, and then ran the DELETE command, and it was still there.
Question : Is there any specific command that we donβt know about to delete records physically from disk?
Note: we know that there are special methods for recovering lost data from hard drives, but here I am talking about using notepad!
source share