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.sys.columns where object_id = object_id('tempdb..#mytemptable');