sql >> データベース >  >> RDS >> Sqlserver

大きなMSSQL.sqlファイルをどのようにインポートしますか?

    コマンドプロンプトから、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] 
    


    1. PostgreSQLのさまざまな補助プランノードの概要

    2. FORのSQLクエリ動的テーブル名

    3. n分ごとに関数を呼び出すようにタイマーを設定するにはどうすればよいですか?

    4. SpringBoot +JPAを使用してPostgreSQLjsonbを保存する方法は?