[Home] [Help]
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:
511: if l_priv_count > 0 then
512: error(c_module, 'Ancestors of Current RUN Edition are not retired');
513: end if;
639: L_EMPTY varchar2(2);
640: -- Old Editions
641: cursor C_OLD_EDITIONS is
642: select oe.edition_name
643: from dba_editions oe, database_properties re
644: where re.property_name = 'DEFAULT_EDITION'
645: and oe.edition_name < re.property_value
646: order by oe.edition_name;
647: begin