日期:2014-05-18  浏览次数:20490 次

sqlserver2005 怎么知道在一段时间内修改了那些表或视图或者存储过程?
如题

------解决方案--------------------
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'