顯示具有 SMSS 標籤的文章。 顯示所有文章
顯示具有 SMSS 標籤的文章。 顯示所有文章

2022年3月9日 星期三

[研究]SQL Server Management Studio (SMSS) 18 資料表設計時顯示描述欄位

[研究]SQL Server Management Studio (SMSS) 18 資料表設計時顯示描述欄位

2022-03-09

環境:SQL Server 2019 + SQL Server Management Studio (SMSS) 18.10

預設的 SQL Server Management Studio (SMSS) 設計模式,卻只有「資料行名稱」、「資料類型」、「允許NULL 」3個欄位,如果要增加顯示「描述」欄位呢?


重要,記得修改時,SQL Server Management Studio 必須是關閉的。

執行 regedit.exe,啟動「登錄編輯器」,搜尋 DataProject,找到

電腦\HKEY_CURRENT_USER\Software\Microsoft\SQL Server Management Studio\18.0_IsoShell\DataProject

SSVPropViewColumnsSQL70 從 1,2,6; 改為 1,2,6,17;

SSVPropViewColumnsSQL80 從 1,2,6; 改為 1,2,6,17;

(不同 SQL Server 版本,機碼路徑和機碼中的「名稱」可能不同)





啟動 SMSS 就可以看到多了「描述」欄位,

各數值意義如下:

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 (SMSS) 18 資料表設計時顯示描述欄位
http://shaurong.blogspot.com/2022/03/sql-server-management-studio-smss-18.html



2020年6月30日 星期二

[研究] SQL Server Management Studio (SMSS) 18.5.1 可否管理 SQL Server 2008 Express 測試

[研究] SQL Server Management Studio (SMSS) 18.5.1 可否管理 SQL Server 2008 Express 測試

2020-06-30

SQL Server Management Studio (SSMS)
https://docs.microsoft.com/en-us/sql/ssms/download-sql-server-management-studio-ssms?view=sql-server-ver15
Release number: 18.5.1
Build number: 15.0.18333.0
Release date: June 09, 2020
英文畫面下載時,預設仍是下載繁體中文版。

https://docs.microsoft.com/zh-tw/sql/ssms/download-sql-server-management-studio-ssms?view=sql-server-ver15
版本號碼:18.5
組建編號:15.0.18330.0
發行日期:2020 年 4 月 7 日
中文網頁尚未更新,仍只到 18.5 版

Microsoft SQL Server 2008 Express
https://www.microsoft.com/zh-tw/download/details.aspx?id=1695



(完)