My code seems pretty forward.

I want to update a specific field with a unique counter, not equal {1,2,3,...}.

I keep getting the error 'The cursor is READ ONLY.'

Also: is there a simpler way?

declare @MaxVal int = NULL
declare @fetchVal int = NULL
select @MaxVal = MAX(tp_Id)+1 from [<tableContainingInitialMaxval>] 
/** some default **/

DECLARE curs01 CURSOR 
for select @maxVal + row_number() OVER (order by [<someUniqueField>]) from [<table2update>];
(used FOR UPDATE OF [<field2update>] but that made no difference)

open curs01
FETCH NEXT FROM curs01 INTO @fetchVal;
WHILE @@FETCH_STATUS = 0
    begin
        update [<table2update>] set [<field2update>] =  @fetchVal 
        WHERE CURRENT OF curs01;
        FETCH NEXT FROM curs01 INTO @fetchVal;
    end;
CLOSE curs01;
DEALLOCATE curs01;
GO 
link|improve this question
3  
FWIW, there is no SQL Server 8. Most recent versions are 6.5, 7.0, 2000, 2005, 2008, 2008 R2 and 2012. – billinkc Jan 11 at 15:51
Sorry, it was 2008 R2 to be more percise – Peter Sinon Jan 11 at 17:51
feedback

1 Answer

up vote 10 down vote accepted

You don't need a cursor for this.

DECLARE @MaxVal INT = NULL

SELECT @MaxVal = MAX(tp_Id) + 1
FROM   tableContainingInitialMaxval;

WITH CTE
     AS (SELECT *,
                @maxVal + row_number() OVER (ORDER BY someUniqueField) AS rn
         FROM   table2update)
UPDATE CTE
SET    field2update = rn  
link|improve this answer
This looks pretty clean, i'll let you know as soon as i get back to work (within 14 hours) – Peter Sinon Jan 11 at 17:10
Perfect. And fast ;-) – Peter Sinon Jan 11 at 17:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.