Why does SQL 2008 all of a sudden want to drop my tables when I go to change the column type from say int to real? This never happened in SQL 2005 to my knowledge. Any insight
Another way to this without totally dropping the table is
Make the column nullable if it does not already allow nulls. Set the column values to be null by doing
update tablename set columnname = null