我需要将xml文件中的数据加载到sql server表列中。尝试以下查询
declare @fileData nvarchar(max)
Select @fileData=BulkColumn
from OpenRowSet(Bulk 'C:\Testfile\Test.xml', Single_blob ) x;
但是我收到以下错误
Cannot bulk load because the file "C:Testfile\Test.xml" could not be opened. Operating system error code (null).
Am trying from SSMS in my machine,i dont have access to sql server machine.