Forum Replies Created

Viewing post 1 (of 1 total)

  • Reply To: Help with Reseed of a table

    This thread helped me but the above could be reduced to:

    DECLARE @lastc int;

    SELECT @lastc = ISNULL(MAX(CCGLId), 0) FROM CGL;

    DBCC CHECKIDENT ('CGL', RESEED, @lastc);

    • This reply was modified 5 years, 4 months ago by  s.wileman. Reason: Code formatting

Viewing post 1 (of 1 total)