Error: ORA-31603: object "TABLE_1" of type TABLE not found in schema "SCHEM
orabitsNov 21 2008 — edited Nov 21 2008I am getting this issue, while executing the below statement in PL/SQL block from another schema (schema_2),
Statement: select dbms_metadata.get_ddl('TABLE','TABLE_1','SCHEMA_1') from dual;
ERROR: ORA-31603: object "TABLE_1" of type TABLE not found in schema "SCHEMA_1".
and it is working fine, if the sql statement run in SQL*Plus from another schema (schema_2).
Is there any special grants needs to be granted from schema_2 to schema_1 ?.
Please help...