Connecting to named instances in SQL Server

このページの内容

お困りですか?

アトラシアン コミュニティをご利用ください。

コミュニティに質問

When using named instances you will need to specify the URL slightly differently in the connection properties.

First off, try:


<url>jdbc:jtds:<server_type>://<server>[:<port>][/<database>];instance=<instance_name></url>

This is specified at the JTDS FAQ

If this doesn't work, try dropping the instance name, and changing the port to the port used by the named instance:


<url>jdbc:jtds:<server_type>://<server>[:<instance_port>][/<database>]</url>

Note. This port is different to the normal SQL Server port as each instance listens on a different port.

最終更新日 2011 年 6 月 18 日

この内容はお役に立ちましたか?

はい
いいえ
この記事についてのフィードバックを送信する
Powered by Confluence and Scroll Viewport.