It seems that SQL Server has a fair amount of XML support. Mostly I ve seen info regarding storing XML in SQL Server, querying XML data stored in SQL Server, and exposing data as XML.
Is the following scenario an option:
I d like to expose xml data (it s an RSS view of workitems) from a web site via a SQL Server view. The motivation is to create new computed values and then show the data via an SSRS report.
I d like to use a view so that the data is always live, and avoid the need for a batch ETL.
Is this possible? What does the syntax look like?