当我尝试删除程序集时,我收到此错误:
DROP ASSEMBLY [test.Sql.Clr]
Msg 701, Level 17, State 13, Line 1
There is insufficient system memory in resource pool 'default' to run this query.
我在 Windows NT 6.1(Build 7601:Service Pack 1)上运行 Microsoft SQL Server 2008 R2 (SP1) - 10.50.2500.0 (X64) Enterprise Edition(64 位)。
当我运行 sys.assemblies 时,有问题的程序集有一个空白的 clr_name,并且包含一个已正确替换的依赖程序集(尝试加载较新的程序集时出现问题)
select name, clr_name from sys.assemblies
test.Sql.Clr.Models test.sql.clr.models...
test.Sql.Clr
有没有人看到这个问题或知道如何解决它?
约翰