SQL object info?
It's the possible to see which object (table,view,proc) used (not changed) in last year?
Thanks.
SELECT * FROM sys.objects
contains a column called modify_date that gives the date of last modification of the database objects. sys.objects includes tables, views, procedures, and so on, but some new objects introduced in SQL Server 2005 (e.g. XML schema collection) are not included.
Hope this helps.
Shankar
Program Manager
Microsoft SQL Server