4 lines
137 B
SQL
4 lines
137 B
SQL
select *
|
|
from sys.objects
|
|
where (type = 'TR' or type = 'P')
|
|
and modify_date > dateadd(m, -1, getdate()) order by modify_date desc |