select schema_name(t.schema_id) as schema_name,
       t.name as table_name,
       t.create_date,
       t.modify_date
from sys.tables t
order by schema_name,
         table_name;
Last modified: May 18, 2020

Author

Comments

Write a Reply or Comment