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 r
select * from tempdb.INFORMATION_SCHEMA.COLUMNS where table_name like '#MyTempTable%'