recent migration issues when PLSQL code accesses dbms_sys_sql
Our db was recently migrated to 10.2.0.4 with the latest patches but it appears there was an issue with grants that caused the following issue to occur.
ORA-00942: table or view does not exist
ORA-06512: at "SYS.DBMS_SYS_SQL", line 909
ORA-06512: at "SYS.DBMS_SQL", line 39
ORA-06512: at "IRSS.PKG_SYSTEMADMIN", line 3577
ORA-06512: at line 31
ORA-06512: at "SYS.DBMS_SYS_SQL", line 909
ORA-06512: at "SYS.DBMS_SQL", line 39
ORA-06512: at "IRSS.PKG_SYSTEMADMIN", line 3577
ORA-06512: at line 31
It appears a grant or synonym was lost so that a certain table or view is no longe accessible. I do not know what table or view is being called at line 909 of the DBMS_SYS_SQL package because it's encrypted. Anyone have any idea?
0