SQL Server Management Studio - how to change a field type without dropping table

前端 未结 2 1509
执笔经年
执笔经年 2020-12-05 14:21

In SQL Server Management Studio, when changing an existing field in design view from DECIMAL (16,14) to DECIMAL (18,14) it will not allow me to sav

2条回答
  •  温柔的废话
    2020-12-05 14:41

    Designer will still drop the table even if the option is unchecked in SSMS. It will just not prompt you next time it does it. To prove, launch the SQL profiler and alter a column using the SSMS designer and you will see a drop table command issued before the Alter table command is executed.

提交回复
热议问题