您的位置:首页 > 博客中心 > 数据库 >

SQLServer查找哪些存储过程是已经加密的

时间:2022-03-14 04:27

--判断存储过程是否加密
select *
from sys.objects SP
left join sys.sql_modules AS smsp ON smsp.object_id = sp.object_id
where sp.type ='P' 
and smsp.definition IS NULL --加密时内容为NULL
order by 1

热门排行

今日推荐

热门手游