Viewing 7 posts - 1 through 7 (of 7 total)
The CanGrow property was the culprit! Thanks!
June 7, 2010 at 6:39 pm
Sample data set:
select 'Report1' as reportID,'Browser' as RoleID, 'YChen' as User2
into #tbl
UNION
select 'Report1' as reportID,'Browser' as RoleID,'AChen' as User2
UNION
select 'Report1' as reportID,'Browser' as RoleID,'BChen' as User2
UNION
select 'Report2' as reportID,'Browser' as...
April 14, 2010 at 1:03 pm
For an example of what I'm trying to do and the method I used, please see http://www.projectdmx.com/tsql/rowconcatenate.aspx
I followed the example under the Recursive CTE methods.
April 14, 2010 at 10:47 am
Viewing 7 posts - 1 through 7 (of 7 total)