Viewing post 1 (of 1 total)
Use the "INTO #tmpTable" statement like:
DECLARE @RecordSetCount int,
@StartRow int,
@MaxRows int,
@OrderBy varchar(50) = 'Column1'
SELECT
ROW_NUMBER()
August 10, 2006 at 1:44 pm
#654416