0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

sqlcmd(Windows認証)で、SQLServerに接続する方法

Last updated at Posted at 2020-10-03

前提

・Windows10 Pro
・SQL Server 2019

1. SQLCMD.exeが存在するパスを、システム環境変数に設定

私の環境だと、「C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\170\Tools\Binn\」。

2. コマンドプロンプトで、コマンド入力

sqlcmd -S <Servername> -E -d <dbname>

例)
sqlcmd -S MYPC\SQLEXPRESS -E -d TEST_DB

「-S」オプションは、接続するサーバ名。
Servernameは、SSMSログイン時のサーバー名を入力。囲い文字は不要。
SSMSのオブジェクトエクスプローラーのルートにも表示されている。

「-E」オプションは、Windows認証。

「-d」オプションは、接続するデータベース名。
省略可能。囲い文字は不要。

3. 接続完了

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?