Sql-Server

配置 SSMS 智能感知/Web 瀏覽器設置以接受 UNC 目錄路徑輸入

  • August 16, 2015

我想導航以從內聯註釋的 UNC 路徑打開目錄路徑。SSMS 與Windows 資源管理器集成,資源管理器允許從地址欄進行 UNC 導航。

事實上,在集成瀏覽器中,可以在 UNC 路徑之間導航。但是,在 SSMS 的文本編輯器中為前綴 URL 提供的點擊功能http:/似乎不適用於 UNC 路徑。/Web Browser部分似乎打開了 Internet Explorer 選項,並且/ /Options部分具有“啟用點擊 URL 導航選項”,但似乎不允許定義檢測為 URL 的內容。Environment``Text Editor``Plain Text``General

下面連結的截圖

UrlAllows ClickThrough

UncDoesNotAllowClickthrough

TextEditor_PlainText_General

(在下面添加範常式式碼)

use [master]
go

-- http://www.google.com
-- \\servername\unc\BackupFolder\

select 'This query needs to be uploaded to the URL' Header
union
select 'and also saved for archiving at the UNC path'
union
select 'so is it possible to clickthrough to both?'

我會說您需要使用文件 URI

例如:

SSMS Screengrab - 本地

如果您像這樣轉換為,則可以在文件 uri 中使用 UNC\路徑/

SSMS Screengrab - 分享

引用自:https://dba.stackexchange.com/questions/111203