Viewing post 1 (of 1 total)
you could use this example :
select * into #temptable from [your_table]
select @@ROWCOUNT row_count,* into #targettemp
from #temptable
select * from #targettemp
August 23, 2006 at 12:23 am
#656275