This blog is moved to
http://amalhashim.wordpress.com

Wednesday, February 24, 2010

Listing all modified objects in SQL Server by Date

 

select * from sys.objects where modify_date >= '2010-02-16'

This will list all the database objects modified after 16th Feb 2010

No comments: