欢迎投稿

今日深度:

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

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

www.htsjk.Com true http://www.htsjk.com/shujukunews/5576.html NewsArticle SQLServer查找哪些存储过程是已经加密的,sqlserver存储过程 --判断存储过程是否加密select *from sys.objects SPleft join sys.sql_modules AS smsp ON smsp.object_id = sp.object_idwhere sp.type =P and smsp.definition IS...
评论暂时关闭