zoukankan      html  css  js  c++  java
  • 查询一段时间内修改过的存储过程

    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'

  • 相关阅读:
    算法学习02天nlp之TF-IDF
    kylin 密码修改
    kylin报错: failed on local exception: org.apache.hadoop.hbase.ipc.CallTimeoutException : Call id=xxxxx waitTime=xxxxx,operationTimeout = 5000 expired
    kafka 练习
    hdfs 3备份 2备份
    nlp 电商评论处理 -史诗级长文
    调用百度OCR模块进行文字识别
    简单的社交网络
    maxscript.api
    【pytorch】保存与加载模型(1.7.0官方教程)
  • 原文地址:https://www.cnblogs.com/wancong/p/7228324.html
Copyright © 2011-2022 走看看