1

我想将一个文件作为 blob 放入我的数据库中。该文件不在 sql 服务器端,而仅在我启动 sql 脚本的客户端上。

如果我尝试像这样打开文件

select * from openrowset(BULK, 'E:\Installer\metadata.hwr.de.xml',SINGLE_BLOB) a,

我收到错误

Msg 4861, Level 16, State 1, Line 1
Cannot bulk load because the file "E:\Installer\metadata.hwr.de.xml"
could not be opened.  Operating system error code 3(The system cannot find the path specified.).

只有当我将文件添加到服务器时,它才会起作用。有没有可能实现这一目标?

谢谢

4

1 回答 1

0

您可以共享您的文件夹,服务器可以访问它

select * from openrowset(BULK, '\\developermchine1\shared\metadata.hwr.de.xml',SINGLE_BLOB) a
于 2012-09-21T15:03:32.880 回答