on 2015 Jul 06 11:18 AM
Hello all
I have been looking for this, but could not find it
I would like to know the SQL request to retrieve the list of business roles and their relevant role owner. Just the same we have in the IdM web interface, in the "Manage" folder when we choose the roles. Anybody got that ?
Thanks !
Request clarification before answering.
with unique IDs
select mcThisMSKEYVALUE, mcOtherMSKEYVALUE from idmv_link_ext where mcAttrName = 'mx_owner' and mcThisOcName = 'mx_role'
or with displaynames
select b.mcDisplayName as 'role name', c.mcDisplayName as 'owner' from idmv_link_ext a, idmv_entry_simple b, idmv_entry_simple c
where a.mcAttrName = 'mx_owner'
and a.mcThisOcName = 'mx_role'
and a.mcThisMSKEY = b.mcMSKEY
and a.mcOtherMSKEY = c.mcMSKEY
regards, Tero
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
78 | |
12 | |
9 | |
8 | |
7 | |
5 | |
4 | |
4 | |
3 | |
3 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.