小编Adr*_*ght的帖子

如何查询加密存储过程的名称?

什么查询将识别加密的存储过程的名称?这是我到目前为止所得到的 -

select ROUTINE_NAME
from INFORMATION_SCHEMA.ROUTINES
where ROUTINE_TYPE = 'PROCEDURE'
-- need another condition here to identify just the encrypted SPROC's
order by ROUTINE_NAME asc
Run Code Online (Sandbox Code Playgroud)

提前致谢。

sql-server stored-procedures

7
推荐指数
1
解决办法
6277
查看次数

标签 统计

sql-server ×1

stored-procedures ×1