Às vezes, é muito trabalhoso truncar uma tabela (por causa das chaves foriegn, etc).
-- Delete all the records in the table
DELETE [dbo].[Foo]
-- Reset the Identity field.
DBCC CHECKIDENT('Foo', RESEED, 0)
O próximo registro inserido obterá o Id: 1.
Conteúdo para você se capacitar em programação
Às vezes, é muito trabalhoso truncar uma tabela (por causa das chaves foriegn, etc).
-- Delete all the records in the table
DELETE [dbo].[Foo]
-- Reset the Identity field.
DBCC CHECKIDENT('Foo', RESEED, 0)
O próximo registro inserido obterá o Id: 1.