美文网首页
Sql Server Management Studio(ssm

Sql Server Management Studio(ssm

作者: Sunday_1024 | 来源:发表于2021-11-01 11:14 被阅读0次

    参考 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(ssm

          本文链接:https://www.haomeiwen.com/subject/byjzaltx.html