I need to change an existing column in a table so that it has the identity
property using T-SQL and then insert data into this table. The column already contains data and after this insertion, I must again change this column by disabling the identity
property. Currently I need to enter the data manually, seeing which is the last integer (index) to complete the insertion. How to do this correctly?