-- List Application codes by Security Group
select ner.entity_restriction_id,
ner.restriction_type,
ner.parent_value,
ner.child_value,
nsg.security_group_name
from KNTA_ENTITY_RESTRICTIONS ner,
KNTA_SECURITY_GROUPS nsg
where restriction_type = 'MY_APP_CODE'
and ner.parent_value = nsg.security_group_id
order by ner.parent_value, ner.child_value
|