I need to set a new SEED value to an existing identity column through Query.
I used the following
DBCC CHECKIDENT (jobs, RESEED, 30)
but Enterprise Manager still shows the old SEED value.
Can u help me?
Thanks
Soura
DBCC CHECKIDENT (jobs, RESEED, 30)
the seed value is changed but the Enterprise Manager still shows the old SEED
value.
For example, i checked the seed with
DBCC CHECKIDENT (jobs, NORESEED)
it shows 20 as seed and I reset the seed from 20 to 30 by Query
DBCC CHECKIDENT (jobs, RESEED, 30)
Now
DBCC CHECKIDENT (jobs, NORESEED)
returns 30 as seed but E.M still shows 20 as Seed
Thanks,
Soura