user1626264
user1626264

Reputation:

DQL get the list of default groups

Is there a way to get the list of default groups (owners,contributors,members) of a room using dql in documentum 6.6

Upvotes: 2

Views: 1086

Answers (2)

user1628447
user1628447

Reputation:

Besides

select builtin_groups from dmc_room where object_name ="MYROOM"

To list the room and there actual(owners and contributors only) groups use:-

select dg.group_name,dr.object_name from dm_group dg,dmc_room dr where group_name like 'room_%_%n%s' and dg.group_name IN dr.builtin_groups

Upvotes: 1

perilbrain
perilbrain

Reputation: 8207

select builtin_groups from dmc_room where object_name ="MYROOM"

Upvotes: 0

Related Questions