When I try to change this columns list:
Nombre
Imagen
Descripcion
Activo
IdLineaProducto
into this (IdLineaProducto is first)
IdLineaProducto
Nombre
Imagen
Descripcion
Activo
SQL Server Management Studio says that it's not allowed to save changes because the table must be deleted and recreated (in spanish...). I could do this in SQL Server 2005, but not in SQL Server 2008.
The same happens in other situations, like trying to transform an int non-identity column to identity. Why happens this? How can I resolve this? Maybe some misconfigured issue? Some new feature in SQL Server?