Running a select on sys.objects for a type I created:

CREATE TYPE [dbo].[IntListType] AS TABLE(
[ID] [int] NULL) 


Select * From sysObjects Where Name Like '%listtype%'

I get the names back as follows:

name : TT_IntListType_2E4CAB33
xtype : TT
type : TT 

and stuff.

How do I get the access to the original name of dbo.IntListType?

link|improve this question
feedback

2 Answers

up vote 1 down vote accepted

Query sys.table_types instead.

link|improve this answer
feedback

Check out the sys.types table.

select * from sys.types
 where name like '%listtype%'
link|improve this answer
works, they sys.table_types option is what I went with. – Bas Hamer Aug 11 '11 at 15:45
cool. Feel free to upvote our answers if they were helpful then! :) – Scott Ferguson Aug 11 '11 at 20:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.