If you want to check and update the identity on tables in SQL Server, you can use the following code:
select ident_current('tablename') as ident
dbcc checkident('tablename',RESEED,100)
select ident_current('tablename') as newident
If you want to check and update the identity on tables in SQL Server, you can use the following code:
select ident_current('tablename') as ident
dbcc checkident('tablename',RESEED,100)
select ident_current('tablename') as newident