当前位置: 代码迷 >> Sql Server >> sqlserver2005 如何知道在一段时间内修改了那些表或视图或者存储过程
  详细解决方案

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

热度:68   发布时间:2016-04-27 13:59:05.0
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'
  相关解决方案