Bernard
Bernard

Reputation: 2043

select xml data column into flat reporting table

We have a xml column in SQL Server 2008. We need to do reporting off the data in the xml so we're going to select the xml into a flat table. The flat table has columns that correspond to various nodes in the xml.

What is the best way to do this using SSIS?

Is this a good approach? Or should we just try and write the reports directly off the xml column?

Upvotes: 1

Views: 2047

Answers (1)

Jason Horner
Jason Horner

Reputation: 3690

I would look at using SSRS(SQL Server Reporting Services) It can query the XML Column by using xpath and write the report of the column directly.

more info here: http://msdn.microsoft.com/en-us/library/aa964129(SQL.90).aspx

Ignore the part about web services.

Upvotes: 1

Related Questions