码迷,mamicode.com
首页 > 数据库 > 详细

sql server的bcp指令

时间:2017-01-17 20:02:23      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:select   str   shel   lin   option   configure   cloud   shell   table   

有时需要允许bcp指令

-- 允许配置高级选项
EXEC sp_configure ‘show advanced options‘, 1
GO
-- 重新配置
RECONFIGURE
GO
-- 启用xp_cmdshell
EXEC sp_configure ‘xp_cmdshell‘, 1
GO
--重新配置
RECONFIGURE
GO

1、导出文件:

  EXEC (‘EXEC master..xp_cmdshell ‘‘bcp "select * from [dbname].[dbo].tablename where xx=‘‘‘‘xx‘‘‘‘ " 

queryout "D:\sql\.txt" -c -S"QCLOUD-VM" -U"username" -P"pwd"‘‘‘)

2、导入文件:

  exec master..xp_cmdshell ‘bcp [dbname].[dbo].tablename in d:\sql\sql.txt -c -T‘

sql server的bcp指令

标签:select   str   shel   lin   option   configure   cloud   shell   table   

原文地址:http://www.cnblogs.com/zhaoyihao/p/6294136.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!