Some days you need to clone complete databases, clear out all the
current data and reseed the indexes before making use of it. If you're
having one of those days, the script below will make short work of the
task.
EXEC sp_MSForEachTable 'DISABLE TRIGGER ALL ON ?'
GO
EXEC sp_MSForEachTable 'ALTER TABLE ? NOCHECK CONSTRAINT ALL'
GO
EXEC sp_MSForEachTable 'DELETE FROM ?'
GO
EXEC sp_MSForEachTable 'ALTER TABLE ? CHECK CONSTRAINT ALL'
GO
EXEC sp_MSForEachTable 'DBCC CHECKIDENT ([?], RESEED, 0)'
GO
EXEC sp_MSForEachTable 'ENABLE TRIGGER ALL ON ?'
GO