SQL Server can open excel worksheets (xlsx), access databases (mdb), and other data streams using data providers (such as JET, ACE) and OPENROWSET.
Are there similar tools to retrieve data from a remote web service? Using OPENROWSET and providing it with a web service driver and a URL and some schema definition to translate the hierarchical nature of the webservice XML output into a table that SQL Server can query.
I am thinking of something like:
select * from OPENROWSET('WEBSERVICE.4.0.PROVIDER','http://mydomain/webservice.asmx')
That is a high level question, although I know it is conceptually possible, I would like to know if there are any implementations of this idea.
thanks
source share