sqlserver2005 如何知道在一段时间内修改了那些表或视图或者存储过程
sqlserver2005 怎么知道在一段时间内修改了那些表或视图或者存储过程?
如题
------解决方案--------------------
select Name,
Create_date,
Modify_Date
from sys.objects
where type in ('U','P')
------解决方案--------------------
如题
------解决方案--------------------
select Name,
Create_date,
Modify_Date
from sys.objects
where type in ('U','P')
------解决方案--------------------
- SQL code
select * from sys.objects where type ='P' or type='U'