I\'m trying to write a table trigger which queries another table that is outside the schema where the trigger will reside. Is this possible? It seems like I have no proble
You should execute this for every table and schema involved:
grant select on OTHER_SCHEMA_%.table_name to MAIN_SCHEMA;