SQL Server Management Studio表设计器增加编辑列

1、关闭SSMS

2、在“运行”中输入regedit,打开注册表 

3、找到 HKEY_CURRENT_USER\Software\Microsoft\SQL Server Management Studio\11.0\DataProject目录下的2个条目:

• SSVPropViewColumnsSQL70

• SSVPropViewColumnsSQL80

4、修改值

从1,2,6;  改成 1,2,6,7,8,9,17;

5、打开SSMS,最终效果如下:

注1:修改的注册表应该是连接的数据库所在的计算机的注册表

注2:步骤4中各值的含义:

1. Column Name

2. Data Type

3. Length

4. Precision

5. Scale

6. Allow Nulls

7. Default Value

8. Identity

9. Identity Seed

10. Identity Increment

11. Row GUID

12. Nullable

13. Condensed Type

14. Not for Replication

15. Formula

16. Collation

17. Description

你可能感兴趣的:(SQL Server Management Studio表设计器增加编辑列)