vote up 0 vote down star

I'm using SQL Server 2008. Say I create a temporary table like this one:
create table #MyTempTable (col1 int,col2 varchar(10))

How can I retrieve the list of fields dynamically? I would like to see something like this:

Fields:
col1
col2

I was thinking of querying sys.columns but it doesn't seem to store any info about temporary tables. Any ideas?

flag

63% accept rate

3 Answers

vote up 3 vote down check
select * from tempdb.sys.columns where object_id =
object_id('tempdb..#mytemptable');
link|flag
It works fine on SQL Server 2008 – Anthony Apr 16 at 13:35
+1 - very simple and easy approach - I was too convoluted again ;-) – marc_s Apr 16 at 13:50
Great, I will remove "tested only on SQLServer 2005" then – kristof Apr 16 at 13:50
vote up 1 vote down

The temporary tables are defined in "tempdb", and the table names are "mangled".

This query should do the trick:

select c.*
from tempdb.sys.columns c
inner join tempdb.sys.tables t ON c.object_id = t.object_id
where t.name like '#MyTempTable%'

Marc

link|flag
I think this could cross scopes. If it's one time code, fine. If it's code that will have a real lifespan, problem. – jcollum Jul 28 at 19:32
vote up 0 vote down
select * 
from tempdb.INFORMATION_SCHEMA.COLUMNS
where table_name like '#MyTempTable%'
link|flag

Your Answer

Get an OpenID
or

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