There is a defaul run managed by SQL Server in the log file in the c: \ Program Files folder ... You can view this file with the SQL command. For example, to see the log_19.trc file, you can run a command, for example
SELECT *
FROM fn_trace_gettable
('C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\LOG\log_19.trc', default)
This will probably show when and who dumped the database. More information can be found here ...
source
share