DBA Data[Home] [Help]

SYSTEM.AD_APPS_PRIVATE dependencies on DBA_OBJECTS

Line 78: type schema_check_table is table of dba_objects.owner%type index by binary_integer;

74: -- Some programs that use ad_ddl call it hundreds of times and we don't need to
75: -- do the check if we've already done it. The check will be done in
76: -- check_for_apps_ddl
77: --
78: type schema_check_table is table of dba_objects.owner%type index by binary_integer;
79: schema_check schema_check_table;
80: --
81:
82: --

Line 553: -- Types returned are standard object types (as found in dba_objects),

549: -- If does not find exact match, checks to see if syn_own_schema contains
550: -- any object named syn_name. If it finds such an object, it returns
551: -- is_obj_w_name = TRUE and typ_exist_obj =
552: --
553: -- Types returned are standard object types (as found in dba_objects),
554: -- except for the case where there is both a PACKAGE and a PACKAGE BODY
555: -- named syn_name in the schema. In this case, we return
556: -- typ_exist_obj = 'PKG_S_AND_B'.
557: --