I wanted to know how can I make the DWL query to know the "user-groups" assignment. I´ve tried with this query:
select us.user_name, us.user_group_name
from dm_user us, dm_group gr
where gr.group_name=us.user_group_name
but I´m sure it´s wrong because it uses repeating attributes, and I want to see all the groups where is assigned every user, I don´t remember how to do it...Some users can have two or more groups, how can I do it??