标签:and ring 触发器 sys 修改 type line from nbsp
1、按最近修改排序所有存储过程
SELECT
[
name
], [create_date], [modify_date]
FROM
[sys].[objects]
WHERE
[type] =
‘P‘ -- 这里也可以替换为:‘U‘
,
‘IF‘
,
‘TR‘分别代表
用户表,自定义函数,触发器
ORDER
BY
[modify_date]
DESC
select
[name]
,create_date
,modify_date
FROM
sys.all_objects
where
type_desc = N‘SQL_STORED_PROCEDURE‘
and name = ‘SP_SystemStatistics‘ -- 输入名称
and modify_date >=‘2016-08-05 00:00:00‘
标签:and ring 触发器 sys 修改 type line from nbsp
原文地址:http://www.cnblogs.com/lbhqq/p/6963369.html