首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

SQLServer运用BCP导入导出数据

2012-08-07 
SQLServer使用BCP导入导出数据命令行下:bcp pubs.dbo.table1 in d:\\t1.dat -S . -U sa -P 123 -nbc

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

热点排行