Sql Server Management Studio(ssms) 在表设计器添加说明备注和默认值设置列

参考 https://stackoverflow.com/questions/10537610/how-do-i-add-the-description-property-to-the-table-designer-view-in-ssms

Property sequence:

  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

最终效果图如下:

image.png

注册表设置值是:1,2,6,17,7;

image.png
image.png

计算机\HKEY_CURRENT_USER\Software\Microsoft\SQL Server Management Studio\18.0_IsoShell\DataProject

image.png

实现过程:在注册表中查找对应SSMS的版本号(Sqlserver2016 对应13.0)下的

SSVPropViewColumnsSQL70 和 SSVPropViewColumnsSQL80,并修改为1,2,6,17; 然后重启SSMS。

需要注意的是,如果连接的数据库非本地的情况下,则修改的注册表是连接的数据库所在的计算机的注册表。

你可能感兴趣的:(Sql Server Management Studio(ssms) 在表设计器添加说明备注和默认值设置列)