Where to find a creation date on an index?

  • Hi,

    I cannot find a date when an index was created on SQL server 2000 sysindexes. Does anyone know where I can find this information?

    Thanks in advance!

  • i don't know if you'll find it;for the indexes on all the PK's and UQ indexes, you can find it because the creation date of the PK and it's index would happen at the same time;

    select * from sysobjects where xtype in('PK','UQ')

    i don't believe that you'll find any other creation dates for indexes other than that, even in 2005;

    Additionally, in 2005 you might find the indexes created in the default trace, but I'd have to test that.

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • Lowell ,

    Thank you for your reply. That was what I thought, but just checking with the community.

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply