sys.objects
为我创建的类型运行选择:
CREATE TYPE [dbo].[IntListType] AS TABLE(
[ID] [int] NULL)
Select * From sysObjects Where Name Like '%listtype%'
我得到的名字如下:
name : TT_IntListType_2E4CAB33
xtype : TT
type : TT
和东西。
如何获得对原始名称的访问权限dbo.IntListType
?