In SQL Server 2005 and above, how can I find when an index was created?
Tell me more
×
Database Administrators Stack Exchange is a question and answer site for
database professionals who wish to improve their database skills and learn from others in the community. It's 100% free, no registration required.
|
My answer is a direct quote of this link: http://www.sqlservercentral.com/Forums/Topic960549-391-1.aspx#bm960643 There is no direct way of finding the creation date of an index. But however if you look in sysobjects there is a creation date for Primary Key or Unique Constraints.Indexes associated with primary Primary Key or Unique Constraints creation date can be known. check if there are any new DMVs (Dynamic Mgmt Views) in sql server 2008 which can help you in getting creationDate. try this query
|
|||||||||||||
|