List view/table/storedprocedure details including creation, modify date
This system tables allow you to see the list of views, tables, stored procedures in the database as well as information like creation, modify date.
SELECT * FROM MyDb.sys.viewsSELECT * FROM MyDb.sys.tablesSELECT * FROM MyDb.sys.procedures
Comments
Post a Comment