Hello all. I am running MSSQL as my database for CS 10.0.0 UP2 SP 11. I am trying to build a report that lists each group, with all of the users in that group for every group in Content Server. My query is as follows:
SELECT c.name as "Group", a.firstName, a.lastName
FROM kuaf a, dtree b, kuaf c
WHERE a.id=b.dataid and a.firstName!='?' and a.deleted='0' and a.groupid=c.id;
My problem is that this report and query are only showing that every user is in ONE group only. However there are cases in which one user account is in several different groups, for various reasons. I would like to be able to build a report that both shows how many different groups a user is in and also show a group by group breakdown with what users are in each group. Thanks everyone!