1

データベースの4GBのSQLデータスクリプトがあります。実行したいのですが、非常に大きなファイルであるため、SQL ServerManagementStudioでは実行できます。

そこで、このファイルを小さなファイルに分割して実行できるようにします。私はそれをグーグルで検索しましたが、良い解決策は得られませんでした。また、HJSplitを使用してファイルを分割しましたが、最初の分割ファイルのみが正しい形式になっていますが、SQLクエリインターフェイスで実行できないため、他のファイルは正しい形式ではありません。

.sql分割の有無にかかわらず、データを使用してこのファイルを実行するにはどうすればよいですか?

4

1 に答える 1

3

sqlcmdツールを使用してファイルを実行します。

sqlcmd -S myServer\instanceName -i C:\myScript.sql

また

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

SQLボックスの場所とスクリプトの名前に置き換えるだけです。SQL インスタンスを使用している場合は、構文が sqlcmd -S \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, enviroment variables [and exit]]
  [-x disable variable substitution]
  [-? show syntax summary]
于 2013-01-19T14:28:53.483 に答える