当前位置 : 主页 > 手机开发 > harmonyos >

SQLServer使用BCP导入导出数据

来源:互联网 收集:自由互联 发布时间:2023-10-08
命令行下: 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


命令行下:

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

上一篇:BCB版 Excel操作类 待完善
下一篇:没有了
网友评论