我正在使用SQL 2005,并正在帮助某人今天debugging连接问题。 我以为我可以从SQLpipe理工作室内查看我当前的连接string,但似乎无法弄清楚如何使它发生。
这可能吗? 谷歌狩猎已经没有结果。
谢谢!
您无法从SQL Management Studio中查看当前的SQL Management Studio连接string。
使用与连接到SQL实例相同的详细信息,可以快速创build自己的连接string。 以下是一些可能有用的示例资源: http : //www.connectionstrings.com/sql-server-2005
希望我正确理解你的问题…?
您可以。 从堆栈交换 :
select 'data source=' + @@servername + ';initial catalog=' + db_name() + case type_desc when 'WINDOWS_LOGIN' then ';trusted_connection=true' else ';user id=' + suser_name() end from sys.server_principals where name = suser_name()