I have a table with identity field and several foreign keys. Now I want to reset identity field to start from 1 . In order to clean up the table I can do only delete because foreign keys prevent me from doing truncate table.
Is there a function , set command or any other method to reset identity without truncating or dropping/recreating a table ?
Thanks