Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Given:

  • I added a non-nullable foreign key to a table.
  • I settled on a way to populate the foreign key with default values.
  • I checked in both changes to a re-runnable DB creation script.
  • Other developers ran this script, and now they have the foreign key populated with default values on their developer machines.

A few days later however...

  • I changed my mind.
  • Now I'd like to populate the foreign key's default values differently.

My Question:

Can SQL Server or INFORMATION_SCHEMA tell me when SQL objects were created?

Ideally, I'd like to drop and re-add the foreign key if it was created before a certain date/time.

Any help or alternative strategies would be greatly appreciated.
Obviously, I'd like to avoid going to each developer's cube, asking them to drop the foreign key manually.

share|improve this question

1 Answer

up vote 2 down vote accepted

For SQL 2000 sysobjects (for SQL 2000), column crdate

For SQL 2005+ sys.objects, create_date and modify_date

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.