0

SQL Server 2008 R2 データベースのデータベース ダイアグラムを作成するという明確な目的のために、SchemaCrawler をダウンロードしました。

私のデータベースの詳細 (SQL Server 言語) は次のとおりです。

Server Name:    localhost\SQLI03
Database Name:  TBL_DEV_53
Authentication: Windows Authentication

次の SchemaCrawler コマンドを実行しています。

sc.cmd -c graph -host=localhost\SQLI03 -port=1433 -database=TBL_DEV_53 schemacrawler.Main -infolevel=detailed -schemas=dbo -tabletypes=TABLE -outputformat=pdf -outputfile=database-diagram.pdf %*

そして、私が解決できない2つのことが起こっています:

  1. パスワードを要求されます。
  2. 次のエラーを出力しています。
schemacrawler.schemacrawler.SchemaCrawlerSQLException: Could not connect to jdbc:jtds:sqlserver://.\SQLI03:1433/TBL_DEV_53;appName=SchemaCrawler;useCursors=true, with properties {}

私は何を間違っていますか?

4

1 に答える 1

0

アシュビー、

http://technet.microsoft.com/en-us/library/ms188670.aspxの指示に従って、「SQL Server および Windows 認証モード」に変更してください。

次に、ユーザーとして「sa」を使用し、選択したパスワードを使用できます。

Sualeh Fatehi、SchemaCrawler

于 2014-04-04T20:21:57.907 に答える