Hi Jodi,
Try running the SQL below and see if that gets what you need. The last column should be a concatenation of all the groups assigned to a user account.
Hope this helps!
Brenda
use EPIM;
select distinct
u.USER_ID as [User Id]
,u.LOGIN as [User]
,u.FIRST_NAME as [First Name]
,u.LAST_NAME as [Last name]
,u.EMAIL as [E-mail address]
,u.IMPERSONATE_IND
,u.DESCRIPTION
,u.SECURITY_CONTEXT_VALUE as [Security Context]
,substring(
(
Select ','+g.NAME AS [text()]
From [B_GROUP_USER] gu
join [B_GROUP] g on g.GROUP_ID = gu.GROUP_ID
where gu.USER_ID = u.USER_ID
ORDER BY g.NAME
For XML PATH ('')
), 2, 1000) [Groups]
from B_USER u
order by 4;
------------------------------
Brenda Maxwell | Director Global Product Management
IDEA | 6787788921
------------------------------