exec sp_configure 'clr enabled', 0
reconfigure with override
go
create type tableType as table(id int)
go
declare @t tableType
insert into @t(id) values (1)
select * from @t
然后显示它不是“幕后”运行的 CLR 类型
select * from sys.dm_clr_appdomains
go
declare @t hierarchyid = hierarchyid::Parse('/1/1/3/')
go
select * from sys.dm_clr_appdomains
用户定义的表类型是 TSQL 功能,不需要启用 CLR。它们也不是“幕后”的 CLR 类型。例如
然后显示它不是“幕后”运行的 CLR 类型
查看当您创建
hierarchyid
但不是用户定义的表类型时如何创建 AppDomain。