How can we help you today? How can we help you today?

DBCC Checkident issue in large table

Hi,

I'm using SQL Compare to sync two databases in SQL SERVER 2000. It's working fine, but I'm having a performance issue with one of my tables. The sync script is adding and deleting some columns, and as the order changes, it's trying to rebuild the table. But when it is trying to run the DBCC CHECKIDENT Reseed instruction on the temp table, the script keeps working, I left it running for almost 20 hours but nothing changes. The table has more than 2000000 records, I think that is the problem.
Is there a way to skip that instruction?
The code that is getting issues is this:
DECLARE @idVal BIGINT
SELECT @idVal = IDENT_CURRENT(N'[dbo].[TocItems]')
IF @idVal IS NOT NULL
    DBCC CHECKIDENT(N'[dbo].[tmp_rg_xx_TocItems]', RESEED, @idVal)
GO

Thank you!
Pablo
rocapm
0

Comments

1 comment

  • Brian Donahue
    Hi Pablo,

    Are you sure you want to ignore the reseed? If the table needs to be rebuilt, this ensures that the next identity value matches what was in the table originally. If you don't reseed, the current identity goes back to 1 and you could have a constraint failure on teh next insert.
    Brian Donahue
    0

Add comment

Please sign in to leave a comment.