标签:加密 sql
--判断存储过程是否加密 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查找哪些存储过程是已经加密的
原文地址:http://blog.csdn.net/claro/article/details/42291533