Viewing post 1 (of 1 total)
i usually just place what is needed into a temp table as below:
select
RowNumber = identity(int,1,1)
,Column_1
,Column_2
into #im_temp0
from <tableName>
April 7, 2011 at 10:29 am
#1308664