- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在考虑使用 bcp 命令来解决用户身份验证,但是 bcp 命令是否能够导入到我的数据库中的表中?顺便说一下,我使用的是 SQL Server 2000 环境。
这是我到目前为止得到的代码:
SET @Command = 'bcp "SELECT vwTest.* from [myserver\sql].test.dbo.vwTest" queryout dbo.Test -C ACP -c -r \n -t ";" -S myserver\sql -Umyuser -Puser1'
EXEC master.dbo.xp_cmdshell @Command
最佳答案
基于 the comparison of BCP, BULK INSERT, OPENROWSET (infer Linked Server) here :
...the bcp utility runs out-of-process. To move data across process memory spaces, bcp must use inter-process data marshaling. Inter-process data marshaling is the process of converting parameters of a method call into a stream of bytes. This can add significant load to the processor. However, because bcp [both] parses the data and [converts the] data into [the] native storage format in the client process, they can offload parsing and data conversion from the SQL Server process.
INSERT
语句,以便根据链接服务器实例中公开的数据库中的记录填充表。 关于sql-server - 如何将数据从另一个数据库(在另一台服务器)中的 View 导入到 SQL Server 2000 中的表中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2282771/
我是一名优秀的程序员,十分优秀!