1

So I made a simple stored procedure with SQLCLR and published it to my database. There are already some SPs and they are all not encrypted, only my published SP is encrypted. I googled for hours but could not find out how to turn the encryption off. Is there a way?

4

1 回答 1

0

SQLCLR 对象未加密。事实上,加密甚至不是 SQLCLR 对象的选项。问题(即为什么 SSMS 和 Visual Studio 的 SQL Server 对象资源管理器表明 SQLCLR 对象是加密的)是没有对象sys.sql_modules的定义(因为它们的定义在程序集中而不是 T-SQL):

SELECT * FROM sys.sql_modules;
于 2016-09-12T11:53:13.257 回答