SQLServer BCPを使うしかない場合
シチュエーション
EXPORT&IMPORTが失敗する時がある。
ソリューション
先にスクリプトでスキーマを構成した後、BCPでデータをコピーする。
移設先DBにすでにデータがあるときは削除しておこう。
(全テーブルのDROP文取得)
select 'DROP TABLE ', name
from sysobjects
where xtype = 'U'
order by 2
sql server bcp ホストのデータファイルが開けません
- 指定先、フォルダーを生成しておくこと
bcp mydb.dbo.mytable out C:\workspace\BcpData\mydb\mytable.dat -n - k -T -b 10000 -S localhost -U sa -P password
- コピー先のフォルダーがあるか確認後、コマンドを管理者権限で実行
参考
Author And Source
この問題について(SQLServer BCPを使うしかない場合), 我々は、より多くの情報をここで見つけました https://qiita.com/mkawanee/items/293846061ad3f2b4755e著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .