January 27, 2010 at 8:24 am
Hi there,
I need a help. I need to know how can I query or get the name of objects changed in last days...
If there's a table that stores the objects and the date of their last DDL updates... maybe I can query it...
So, can anyone help me ???
Thanks a lot ...
att.
Edvaldo Castro
January 27, 2010 at 9:24 am
this might help, and also the default trace can help as well:
select *
from sys.objects
where create_date > GETDATE() -30
or modify_date > GETDATE() -30
or the built in report from the trace:
Lowell
January 27, 2010 at 11:21 am
Thank you very much...
It's easy and usefull...
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply