我想导航以从内嵌注释的 UNC 路径打开目录路径。SSMS 与Windows 资源管理器集成,资源管理器允许从地址栏进行 UNC 导航。
事实上,在集成浏览器中,可以在 UNC 路径之间导航。http:/
但是, UNC 路径似乎不存在 SSMS 文本编辑器中为前缀 URL 提供的点击功能。/Web Browser部分似乎可以打开 Internet Explorer 选项,/ /Options部分具有“启用单击 URL 导航选项”,但似乎不允许定义检测为 URL 的内容。EnvironmentText EditorPlain TextGeneral
下面链接的截图
(下面添加了示例代码)
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:
例如:
如果将
\
to转换为,则可以在文件 uri 中使用 UNC 路径/
: