sqlserver bulk insert

Posted 雨韵蓝田

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sqlserver bulk insert相关的知识,希望对你有一定的参考价值。

开启功能

-- To allow advanced options to be changed.

EXEC sp_configure ‘show advanced options‘, 1

GO

-- To update the currently configured value for advanced options. RECONFIGURE

GO

-- To enable the feature. EXEC sp_configure ‘xp_cmdshell‘, 1

GO

-- To update the currently configured value for this feature.

RECONFIGURE

GO

 

master..xp_cmdshell  ‘net use \\192.168.0.126\ftpfiles 12345678  /user:server\administrator‘   

提示:执行命令成功完成即可。 例如:  master..xp_cmdshell ‘net use \\server\data lp /user:server\administrator‘

以上是关于sqlserver bulk insert的主要内容,如果未能解决你的问题,请参考以下文章

SqlServer批量导入

SELECT FROM OPENROWSET(BULK...) 更改特殊字符

数据仓库之抽取数据:openrowset函数带bulk操作符的用法

从OPENROWSET中选择(BULK ...)更改特殊字符

文件位置更改为远程共享时出现 BULK INSERT 错误

SQL Server批量数据导出导入Bulk Insert使用