Given:
A few days later however...
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.
For SQL 2000 sysobjects
(for SQL 2000), column crdate
For SQL 2005+ sys.objects
, create_date
and modify_date