DBA Data[Home] [Help]

SYS.VALIDATE_ORDIM dependencies on REGISTRY$

Line 465: from sys.registry$ where cid='ORDIM';

461: -- and the status is 'UPGRADED'
462:
463: begin
464: select prv_version into l_prevDbVer
465: from sys.registry$ where cid='ORDIM';
466:
467: l_status := sys.dbms_registry.status('ORDIM');
468:
469: if (l_prevDbVer = '11.1.0') and (l_status = 'UPGRADED') then

Line 543: -- Finally, if in upgrade mode, check if there are errors in registry$error

539:
540: END;
541:
542: --
543: -- Finally, if in upgrade mode, check if there are errors in registry$error
544: --
545: b_upgradeMode := sys.dbms_registry.is_in_upgrade_mode();
546: if b_upgradeMode then
547: l_num_errors := sys.dbms_registry.count_errors_in_registry('ORDIM');

Line 551: ' entries in sys.registry$error for ORDIM');

547: l_num_errors := sys.dbms_registry.count_errors_in_registry('ORDIM');
548: if (l_num_errors > 0) then
549: dbms_output.put_line
550: ('There were ' || l_num_errors ||
551: ' entries in sys.registry$error for ORDIM');
552: b_valid := FALSE;
553: end if;
554: end if;
555: