How can I get the table creation date of a MS SQL table using a SQL query?
I could not see any table physically but I can query that particular table.
Advertisement
Answer
For 2005 up, you can use
x
SELECT
[name]
,create_date
,modify_date
FROM
sys.tables
I think for 2000, you need to have enabled auditing.