I see a LOT of resources about producing feeds from T-SQL2005, about parsing XML into a database schema, processing, bulk operations, etc. What I don't see is how to have, for example, a statement/s in a stored proc or function which can simply access a URL for an XML feed, load the XML into a table field or sproc variable and close the connection.

I understand it might be necessary to use an external layer, like a C# web app, but it would be great (considering all the other complex functions T-SQL provides) to just read a feed or file directly.

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

You can use OPENROWSET if the file is on the same server, example

CREATE TABLE XmlImportTest
(
        xml_data xml
)
GO

INSERT INTO XmlImportTest(xml_data)
SELECT  xmlData 
FROM
(
    SELECT  * 
    FROM    OPENROWSET (BULK 'c:\TestXml.xml' , SINGLE_BLOB) AS XMLDATA
) AS FileImport (XMLDATA)

If you want to import all of them from a folder, take a look at How to import a bunch of XML files from a directory in T-SQL

If you need to acces it from a URL then SSIS could do it if it is a web service or perhaps even SQLCLR

link|improve this answer
He wants to do it from a URL - Can OPENROWSET work for that? – Martin Smith Jul 14 '10 at 10:46
ahh, missed the URL part, could be done with SSIS if it is a web service – SQLMenace Jul 14 '10 at 10:48
Ah I didn't think of SSIS. Probably the best place to do that sort of stuff. – Martin Smith Jul 14 '10 at 10:49
I've not used SSIS before - any useful links or code snippets? Googling now... – Matt W Jul 14 '10 at 10:54
some info about the webservice task msdn.microsoft.com/en-us/library/ms140114.aspx – SQLMenace Jul 14 '10 at 11:11
show 1 more comment
feedback

Nothing inbuilt that I'm aware of. It would be possible to do this through the Object Automation extended stored procedures but you would be better off using the CLR for this (if you have to do it within SQL Server at all - I feel an external app might be better).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.