当前位置: 代码迷 >> SQL >> SQLServer运用BCP导入导出数据
  详细解决方案

SQLServer运用BCP导入导出数据

热度:102   发布时间:2016-05-05 14:18:30.0
SQLServer使用BCP导入导出数据

命令行下:

bcp pubs.dbo.table1 in "d:\\t1.dat" -S . -U "sa" -P "123" -n

bcp pubs.dbo.table1 out "d:\\t1.dat" -S . -U "sa" -P "123" -n

或调用SQL过程

exec master..xp_cmdshell 'bcp pubs.dbo.table1 in "d:\\t1.dat" -S . -U "sa" -P "123" -n'exec master..xp_cmdshell 'bcp pubs.dbo.table1 out "d:\\t1.dat" -S . -U "sa" -P "123" -n'

msdn:http://msdn.microsoft.com/zh-cn/library/ms162802.aspx

  相关解决方案