1. ホーム
  2. sql

[解決済み】大きなMS SQLの.sqlファイルをインポートする方法は?

2022-04-03 05:43:24

質問内容

RedGate SQL data compare を使って、.sql ファイルを生成し、ローカルマシンでそれを実行できるようにしました。しかし、問題はファイルが300mb以上あり、クリップボードが処理できないためコピー&ペーストができず、SQL Server Management Studioでファイルを開こうとすると、ファイルが大きすぎるというエラーが表示されます。

大きな.sqlファイルを実行する方法はありますか?このファイルには、基本的に2つの新しいテーブルのデータが含まれています。

どのように解決するのですか?

コマンドプロンプトから、以下を起動します。 sqlcmd :

sqlcmd -S <server> -i C:\<your file here>.sql 

を置き換えるだけです。 <server> をSQLボックスの場所に、そして <your file here> にはスクリプトの名前を指定します。 SQLインスタンスを使用している場合、構文は次のようになることを忘れないでください。

sqlcmd -S <server>\instance.

sqlcmdに渡すことができるすべての引数のリストです。

Sqlcmd            [-U login id]          [-P password]
  [-S server]            [-H hostname]          [-E trusted connection]
  [-d use database name] [-l login timeout]     [-t query timeout] 
  [-h headers]           [-s colseparator]      [-w screen width]
  [-a packetsize]        [-e echo input]        [-I Enable Quoted Identifiers]
  [-c cmdend]            [-L[c] list servers[clean output]]
  [-q "cmdline query"]   [-Q "cmdline query" and exit] 
  [-m errorlevel]        [-V severitylevel]     [-W remove trailing spaces]
  [-u unicode output]    [-r[0|1] msgs to stderr]
  [-i inputfile]         [-o outputfile]        [-z new password]
  [-f  | i:[,o:]] [-Z new password and exit] 
  [-k[1|2] remove[replace] control characters]
  [-y variable length type display width]
  [-Y fixed length type display width]
  [-p[1] print statistics[colon format]]
  [-R use client regional setting]
  [-b On error batch abort]
  [-v var = "value"...]  [-A dedicated admin connection]
  [-X[1] disable commands, startup script, environment variables [and exit]]
  [-x disable variable substitution]
  [-? show syntax summary]