I am trying to get the list of databases modified between 2 dates in SQL Server 2008.
I tried this query,
select *
from sys.objects
where modify_date between '2015-12-01' and GETDATE()
but the modify_date
column in said query changes only when design of table is changed. If data is inserted to the table it will not be covered.
I have checked the Default trace
option in SQL Server, it is ON (set to 1) for the databases.
Is there any method to list the databases which are modified between 2 specified dates?
Thank you in advance.