DBA Data[Home] [Help]

APPS.AD_ZD dependencies on DBA_TAB_PRIVS

Line 506: from dba_tab_privs

502:
503: -- verify all old editions are retired
504: select count(*)
505: into l_priv_count
506: from dba_tab_privs
507: where privilege = 'USE'
508: and owner = l_owner /* Added for GSCC error */
509: and table_name in ( select parent_edition_name from dba_editions);
510:

Line 613: from dba_tab_privs

609:
610: -- do it
611: begin
612: select grantor into l_grantor
613: from dba_tab_privs
614: where privilege = 'USE'
615: and owner = l_owner /* Added for GSCC error */
616: and table_name = l_edition
617: and grantee = 'PUBLIC';