什么查询将识别加密的存储过程的名称?这是我到目前为止所得到的 -
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)
提前致谢。