• SQL Server 获取某时间点后修改的函数Function 并以文本格式显示


    修改查询分析器如下选项

    右键=》查询选项 =》结果=》文本=》 取消 在结果集中包括列标题 的勾选

    右键=》将结果保存到=》 选择 以文本格式显示结果

    执行如下SQL

    declare @funcname nvarchar(100)=N'';
    declare curFunc cursor for
    select 
     [name]
     --,create_date
     --,modify_date 
    FROM 
     sys.all_objects 
    where 
     type_desc LIKE '%FUNCTION%'
     and substring([name],1,3) not in ('dm_','fn_')
     and modify_date >='2013-07-11 00:00:00'
    order by 
     modify_date desc;
    
    open curFunc;
    fetch next from curFunc into @funcname;
    while @@FETCH_STATUS = 0 
    begin
     print(N'IF EXISTS(SELECT 1 FROM SYS.OBJECTS WHERE [NAME]=N''' + @funcname +''' AND [TYPE]=''FN'')')
     PRINT(N'DROP FUNCTION ' + @funcname);
     print N'GO';
     exec ('sp_helptext ' + @funcname);
     print N'GO';
     fetch next from curFunc into @funcname;
    end
    close curFunc;
    deallocate curFunc;
    
      
  • 相关阅读:
    spark实验四(2)
    spark实验四
    神奇的一天
    Spark实验三
    Scala实验任务三
    Scala实验任务二
    Scala语言实验任务一
    kettle的基本使用
    质量属性之安全性战术
    datax相关
  • 原文地址:https://www.cnblogs.com/freeliver54/p/3186670.html
Copyright © 2020-2023  润新知