SQL Server 2008 : Cannot Insert new column in the middle position and change data type

后端 未结 4 1192
夕颜
夕颜 2020-12-06 07:55

My OS is Windows server 2008.

I\'ve already installed SQL Server Express 2008.

I have several problems:

  1. I can\'t insert a new column in the mid
4条回答
  •  庸人自扰
    2020-12-06 08:11

    Column order doesn't matter either in the designer or in sys.columns.

    The on disk storage will be the same regardless: Inside the Storage Engine - Anatomy of a record.

    There is no performance benefit either.

提交回复
热议问题