查询一段时间内修改过的存储过程

declare @Platform nvarchar(100) = '库名'
declare @Platform_BusinessData nvarchar(100) = '库名' 
declare @LastModifyDate nvarchar(100) = '2017-02-16 00:00:00'  --修改时间

declare @sql nvarchar(max) = '
if OBJECT_ID(''tempdb..#t'') is not null drop table #t

select *
    into #t
    from (
    select ''' + @Platform + '..'' + o.name + isnull(''.'' + tb.name, '''') name, o.create_date, o.modify_date,o.type_desc
        FROM ' + @Platform + '.sys.all_objects o
        left join ' + @Platform + '.sys.triggers t on t.object_id = o.object_id
        left join ' + @Platform + '.sys.tables tb on tb.object_id = t.parent_id
        union all
    select ''' + @Platform_BusinessData + '..'' + o.name + isnull(''.'' + tb.name, ''''), o.create_date, o.modify_date,o.type_desc
        FROM ' + @Platform_BusinessData + '.sys.all_objects o
        left join ' + @Platform_BusinessData + '.sys.triggers t on t.object_id = o.object_id
        left join ' + @Platform_BusinessData + '.sys.tables tb on tb.object_id = t.parent_id
    ) t
    where modify_date >=''' + @LastModifyDate + '''

--select distinct type_desc from #t

select * from #t
    where type_desc = ''USER_TABLE''
        
select * from #t
    where type_desc = ''SQL_STORED_PROCEDURE''
    
select * from #t
    where type_desc = ''SQL_SCALAR_FUNCTION'' or type_desc = ''SQL_TABLE_VALUED_FUNCTION''
    
select * from #t
    where type_desc = ''VIEW''
    
select * from #t
    where type_desc = ''SQL_TRIGGER''
'    

print @Sql
exec sp_executesql @sql



-- select * from UBIPlatform..HY_SOLUTION where SolutionName like 'Case%' or SolutionName like '%Review'

转载于:https://www.cnblogs.com/wancong/p/7228324.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值