Is there an easy way to remove an identity from a table in SQL Server 2005?
When I use Management Studio, it generates a script that creates a mirror table without
I don't believe you can directly drop the IDENTITY part of the column. Your best bet is probably to:
If the identity column is part of a key or other constraint, you will need to drop those constraints and re-create them after the above operations are complete.