--List all the stored procedure which were modified in last 7 days SELECT name FROM sys.objects WHERE type = 'P' AND DATEDIFF(D,modify_date, GETDATE()) < 7 --List all the stored procedure which were created in last 7 days SELECT name FROM sys.objects WHERE type = 'P' AND DATEDIFF(D,create_date, GETDATE()) < 7 --List all the tables which were created in last 7 days SELECT name FROM sys.objects WHERE type = 'U' AND DATEDIFF(D,create_date, GETDATE()) < 7 --List all the tables which were modified ......