Redefinindo uma coluna de identidade do Sql Server (manualmente)

À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.