首页 > 代码库 > SQLServer查找哪些存储过程是已经加密的

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

--判断存储过程是否加密
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

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