Import Xml File Into Sql Server Without Bulk
I'm trying to import data from a XML file into a database. I've made a test script using BULK INSERT, but when I've tested on the live database, permissions for BULK are disabled.
Solution 1:
For BULK INSERT operation, you need administrator privileges for that database. You can take XML data in XML variable and insert into table as mentioned in this link :
Post a Comment for "Import Xml File Into Sql Server Without Bulk"