Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
malathic
Starting Member
6 Posts |
Posted - 2007-07-20 : 02:05:08
|
| Hi All,I want find the date&time on which an index was created on a table. How will you do this?I have looked in to all the system tables and I am not able to find this information. Sysobjects 'crdate' column lists the creation date of objects likeC = CHECK constraintD = Default or DEFAULT constraintF = FOREIGN KEY constraintL = LogFN = Scalar functionIF = Inlined table-functionP = Stored procedurePK = PRIMARY KEY constraint (type is K)RF = Replication filter stored procedure S = System tableTF = Table functionTR = TriggerU = User tableUQ = UNIQUE constraint (type is K)V = ViewX = Extended stored procedure Please help! Thanks |
|
|
b.veenings
Yak Posting Veteran
96 Posts |
Posted - 2007-07-20 : 09:27:31
|
| when i do :SELECT *FROM sysobjectsWHERE (name LIKE '%name index%') i get results for my indexes create date.Need an SQLDB consultant?check www.veeningsengineering.nl |
 |
|
|
|
|
|