Groups | Blog | Home
all groups > sql server programming > february 2007 >

sql server programming : where can i get the temporary table structure


Subramanian
2/4/2007 11:05:02 PM
where can i get the temporary table structure(local/global)

vt
2/5/2007 9:19:50 AM

Use

EXEC tempdb.dbo.sp_help ##t

to get the structure of Global temp table

VT



[quoted text, click to view]

Uri Dimant
2/5/2007 9:52:02 AM
Hi
create table #test (c1 int,c2 char(1))
go
EXEC tempdb.dbo.sp_help #test



[quoted text, click to view]

AddThis Social Bookmark Button