Object info ?
It's the possible to see which object (table,view,proc) used (not changed) in last year?
Thanks.
You can use DDL triggers to create custom logging of DDL changes, also there is a constant lightweight trace for SQL Server 2005 that tracks DDL changes, but this rolls over at 100MB based on file size, so you would have to extract data from this file frequently to prevent its loss.
There is a report in SSMS that shows you latest DDL changes in this file.
-Euan