SQL Server, XML & Reporting Services

Can someone please give me a pointer? Any SQL or XQuery examples would be very helpful.
I am using the Sql2005 June CTP and trying to use the native xml type with reporting services.
Given the example data below, how do I set up reporting services to report on each property?
I am confused to how I should set up my data source. Can reporting services iterate over the results of XQuery? Or do I need to return a rowset of SQL varchar? Thanks for any help.

<node id="1" type="organization">
<properties>
<property>
<description>Organization Name</description>
<value>Athletic Association</value>
</property>
<property>
<description>City</description>
<value>Detroit</value>
</property>
<property>
<description>State</description>
<value>MI</value>
</property>
</properties>
</node>

[1011 byte] By [ActiveBrian] at [2008-1-26]
# 1
If you want to report on the values, you will have to propagate them into relational form using the nodes() method.

You may also want to ask in the reporting services forum.

Best regards
Michael

MRys at 2007-9-9 > top of Msdn Tech,SQL Server,SQL Server XML...

SQL Server

Site Classified