In a couple of my tables in my SQL Server 2005 database all of my data has been erased. Is there anyway to get a log in SQL Server of all the statements that have ran in the past day? I am trying to find out if someone did this on accident, there is a vulnerability in my web app, or the actual DB has been compromised.
|
3
|
|||||
|
|
|
See the following there are a couple of programs which will allow you to read the log. http://sqlserver2000.databases.aspfaq.com/how-do-i-recover-data-from-sql-server-s-log-files.html The one from Red Gate is called SQL Rescue and looks pretty good. |
||||
|
|
|
Make a Transaction Log Backup in SQL Server, download a Trial Version of TOAD for SQL Server there you can import your Transactionlog Backup. And if you want you can also create INSERT Scripts of the DELETED records. But I dont know if there are any restrictions in the TOAD trial version. |
||
|
|
|
|
You could also try running the command DBCC LOG(database,3). It will output the data that is in the transaction log. |
||
|
|
|
|
Something else to keep in mind: if a hacker gained enough access to clean out some tables, there's a good chance they gained enough access to have their way with your log files as well. |
||
|
|
|
|
You're looking for the transaction log. Depending on how, and if, it is setup, you'll be able to see what was run. There some info on it at http://www.databasedesign-resource.com/sql-server-transaction-log.html. Given that, I'm sure you can also Google some better resource. |
||||
|
|
|
There are applications you can buy that can convert a transaction log backup into the actual statements that were run. You may be able to find a trial version of some of these, unfortunately I cannot reccommend any specific one though. |
||
|
|
|
|
You could try a log rescue tool like Log Rescue I would also sort out some auditing of your own. Log Rescue doesn't support SQL 2005 so you could also try Apex SQL Log |
|||
|
