Skip to content
Advertisement

SQL Server table creation date query

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

SELECT
        [name]
       ,create_date
       ,modify_date
FROM
        sys.tables

I think for 2000, you need to have enabled auditing.

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement