You are on page 1of 4

1) Ensure that all database components / objects provided by Oracle are VALID in the source

database prior to starting the upgrade


2) Ensure that you do not have the duplicate objects in the SYS and SYSTEM schema
The following objects are permissible duplicates objects
OBJECT_NAME OBJECT_TYPE
------------------------------ -------------------
AQ$_SCHEDULES TABLE
AQ$_SCHEDULES_PRIMARY INDEX
DBMS_REPCAT_AUTH PACKAGE
DBMS_REPCAT_AUTH PACKAGE BODY

SQL> column object_name format a30


SQL> select object_name, object_type
from dba_objects
where object_name||object_type in
(select object_name||object_type
from dba_objects
where owner = 'SYS')
and owner = 'SYSTEM';
2 3 4 5 6 7

OBJECT_NAME OBJECT_TYPE
------------------------------ -------------------
AQ$_SCHEDULES TABLE
AQ$_SCHEDULES_PRIMARY INDEX
DBMS_REPCAT_AUTH PACKAGE
DBMS_REPCAT_AUTH PACKAGE BODY

SQL> select TZ_VERSION from registry$database;


3
SQL>

Step 12 errors :-

SQL> @analyze.sql
Analyze table "STREAMS$_APPLY_SPILL_MSGS_PART" validate structure cascade into
invalid_rows
*
ERROR at line 1:
ORA-14508: specified VALIDATE INTO table not found
Analyze table "WRH$_ACTIVE_SESSION_HISTORY" validate structure cascade into invalid_rows
*
ERROR at line 1:
ORA-14508: specified VALIDATE INTO table not found

Analyze table "WRH$_DB_CACHE_ADVICE" validate structure cascade into invalid_rows


*
ERROR at line 1:
ORA-14508: specified VALIDATE INTO table not found

Analyze table "WRH$_DLM_MISC" validate structure cascade into invalid_rows


*
ERROR at line 1:
ORA-14508: specified VALIDATE INTO table not found

Analyze table "WRH$_FILESTATXS" validate structure cascade into invalid_rows


*
ERROR at line 1:
ORA-14508: specified VALIDATE INTO table not found

Analyze table "WRH$_INST_CACHE_TRANSFER" validate structure cascade into invalid_rows


*
ERROR at line 1:
ORA-14508: specified VALIDATE INTO table not found

Analyze table "WRH$_LATCH" validate structure cascade into invalid_rows


*
ERROR at line 1:
ORA-14508: specified VALIDATE INTO table not found

Analyze table "WRH$_LATCH_CHILDREN" validate structure cascade into invalid_rows


*
ERROR at line 1:
ORA-14508: specified VALIDATE INTO table not found

Analyze table "WRH$_LATCH_MISSES_SUMMARY" validate structure cascade into invalid_rows


*
ERROR at line 1:
ORA-14508: specified VALIDATE INTO table not found

Analyze table "WRH$_LATCH_PARENT" validate structure cascade into invalid_rows


*
ERROR at line 1:
ORA-14508: specified VALIDATE INTO table not found

Analyze table "WRH$_OSSTAT" validate structure cascade into invalid_rows


*
ERROR at line 1:
ORA-14508: specified VALIDATE INTO table not found

Analyze table "WRH$_PARAMETER" validate structure cascade into invalid_rows


*
ERROR at line 1:
ORA-14508: specified VALIDATE INTO table not found

Analyze table "WRH$_ROWCACHE_SUMMARY" validate structure cascade into invalid_rows


*
ERROR at line 1:
ORA-14508: specified VALIDATE INTO table not found

Analyze table "WRH$_SEG_STAT" validate structure cascade into invalid_rows


*
ERROR at line 1:
ORA-14508: specified VALIDATE INTO table not found

Analyze table "WRH$_SERVICE_STAT" validate structure cascade into invalid_rows


*
ERROR at line 1:
ORA-14508: specified VALIDATE INTO table not found

Analyze table "WRH$_SERVICE_WAIT_CLASS" validate structure cascade into invalid_rows


*
ERROR at line 1:
ORA-14508: specified VALIDATE INTO table not found

Analyze table "WRH$_SGASTAT" validate structure cascade into invalid_rows


*
ERROR at line 1:
ORA-14508: specified VALIDATE INTO table not found

Analyze table "WRH$_SQLSTAT" validate structure cascade into invalid_rows


*
ERROR at line 1:
ORA-14508: specified VALIDATE INTO table not found

Analyze table "WRH$_SYSSTAT" validate structure cascade into invalid_rows


*
ERROR at line 1:
ORA-14508: specified VALIDATE INTO table not found

Analyze table "WRH$_SYSTEM_EVENT" validate structure cascade into invalid_rows


*
ERROR at line 1:
ORA-14508: specified VALIDATE INTO table not found
Analyze table "WRH$_SYS_TIME_MODEL" validate structure cascade into invalid_rows
*
ERROR at line 1:
ORA-14508: specified VALIDATE INTO table not found

Analyze table "WRH$_TABLESPACE_STAT" validate structure cascade into invalid_rows


*
ERROR at line 1:
ORA-14508: specified VALIDATE INTO table not found

Analyze table "WRH$_WAITSTAT" validate structure cascade into invalid_rows


*
ERROR at line 1:
ORA-14508: specified VALIDATE INTO table not found

You might also like