one-oracle.xql
DB Query file
Related Files
- packages/acs-subsite/www/permissions/one.tcl
- packages/acs-subsite/www/permissions/one.adp
- packages/acs-subsite/www/permissions/one-postgresql.xql
- packages/acs-subsite/www/permissions/one-oracle.xql
[ hide source ] | [ make this the default ]
File Contents
<?xml version="1.0"?> <queryset> <rdbms><type>oracle</type><version>8.1.6</version></rdbms> <fullquery name="inherited_permissions"> <querytext> select grantee_id, grantee_name, privilege from (select grantee_id, acs_object.name(grantee_id) as grantee_name, privilege, 1 as counter from acs_permissions_all where object_id = :object_id union all select grantee_id, acs_object.name(grantee_id) as grantee_name, privilege, -1 as counter from acs_permissions where object_id = :object_id ) group by grantee_id, grantee_name, privilege having sum(counter) > 0 </querytext> </fullquery> <fullquery name="nr_inherited_permissions"> <querytext> select count(*) from ( select grantee_id, grantee_name, privilege from (select grantee_id, acs_object.name(grantee_id) as grantee_name, privilege, 1 as counter from acs_permissions_all where object_id = :object_id union all select grantee_id, acs_object.name(grantee_id) as grantee_name, privilege, -1 as counter from acs_permissions where object_id = :object_id ) group by grantee_id, grantee_name, privilege having sum(counter) > 0 ) as counts </querytext> </fullquery> <fullquery name="children"> <querytext> select object_id as c_object_id,acs_object.name(object_id) as c_name, object_type as c_type from acs_objects o where context_id = :object_id and exists (select 1 from acs_object_party_privilege_map where object_id = o.object_id and party_id = :user_id and privilege = 'admin') </querytext> </fullquery> <fullquery name="children_count"> <querytext> select count(*) as num_children from acs_objects o where context_id = :object_id and acs_permission.permission_p(o.object_id, :user_id, 'admin') = 't' </querytext> </fullquery> </queryset>