|
|
| |

How do I get the date the object was created?
Answer:
To get the date the object was created, you can query the sysobjects
system table to see the crdate column. This is the example to get
the date the authors table was created:
SELECT crdate FROM sysobjects WHERE name = 'authors'
Read about the sysobjects system table in SQL Server Books Online.
|
|
|