Which SQL Server version you are using..? Do you have access to MSSQL\LOG.... folder?
For that, you should enabled default trace earlier. It is enabled by default..
Check whether default trace is enabled or not?
SELECT* FROM sys.configurations WHERE configuration_id = 1568
If it is not enabled, how do we enable it? We can run this script in order to enable the default trace:
sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO
sp_configure 'default trace enabled', 1;
GO
RECONFIGURE;
GO
-- To get the default trace path
SELECT path, start_time, last_event_time FROM sys.traces
Check the below link for the same
https://www.simple-talk.com/sql/performance/the-default-trace-in-sql-server---the-power-of-performance-and-security-auditing/
http://www.sqlservercentral.com/Forums/Topic1072850-1550-1.aspx
Mark This Response as Answer
--
Chandu
http://www.dotnetfunda.com/images/dnfmvp.gif
NADH123, if this helps please login to Mark As Answer. | Alert Moderator