If I want to extend a column length from 30 to 60 characters for a varchar
column in SQL Server Management Studio, I have to uncheck the box Prevent saving changes that require table re-creation
.
Are there any side effects to doing this table re-creation? Will I reset the identity or increment seed, loose indices or find any other unwanted effects?
I need to do this on a live DB and I don't want to find out the hard way that something has changed.