hi I have identity column with data type integer starting from 1 and incrementing every insertion.
for sometime i wanna run a stored procedure which restart the identity numbering to 1, how can i do that?
I try this statement, but couldn't run it:
alter table <table-name> alter column <identity-column-name> restart with 1;
Thanks in advance