SQL Server Management Studio设计视图显示说明列
想把说明列添加到列表上,我们可以通过修改工具注册表来实现:首先,运行-regedit-打开注册表(这里记得关掉SMSS工具)。然后,根据地址找到具体位置:HKEY_CURRENT_USER\Software\Microsoft\SQL Server Management Studio\13.0\DataProject我是用的是2016,版本为13.0,这里注意对应你的版本号下找到DataProjectSQL Server 2008 R2是100,SQL Server 2012是11.02019的路径跟上面不同:Computer\HKEY_CURRENT_USER\Software\Microsoft\SQL Server Management Studio\18.0_IsoShell\DataProject最后,我们找到SSVPropViewColumnsSQL70 和SSVPropViewColumnsSQL80 我们看到的值:1,2,6; → 把它改成:1,2,6,17;,数字代表的列如下:(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再打开SMSS工具,如图:
|