10-9-2008 2:30:3
Mất toi 3h đọc tài liệu cuối cùng rút ra được cái này:
-------------------------------
Problem
One nice feature of SQL Server that is used quite a bit is the use of identity columns. This function gives you a simple way of creating a unique value for every row in your table. Adding a new column and making it an identity column is an easy thing to do as well as dropping an existing column that is an identity column, but how can you modify an existing column to make it an identity column or remove the identity property from an existing column?
Solution
Not sure how much you have researched this one so far, but there is no easy way to do this. By design there is no simple way to turn on or turn off the identity feature for an existing column. The only clean way to do this is to create a new column and make it an identity column or create a new table and migrate your data.
-----------------------------------------
Câu trả lời là chẳng có cách nào để có 1 cột dữ liệu có sẵn sau đó chuyển nó thành identity cả, mà chỉ có duy nhất 1 cách là tạo 1 bảng mới và migration dữ liệu sang bảng mới

ôi thương đau thay!
Nguồn đây
http://www.mssqltips.com/tip.asp?tip=1397