oracle_fdw - βIs it possible in PostgreSQL to import foreign schema with a limit to synonym - as in the attached image? γ €
For example, this not working (limit to synonym):
IMPORT FOREIGN SCHEMA "UserA" LIMIT TO (A_SYNONYM) FROM SERVER oracledb INTO public;
but works when I try to import foreign schemat limit to view or table:
IMPORT FOREIGN SCHEMA "UserB" LIMIT TO (B_VIEW) FROM SERVER oracledb INTO public;
β So, it is possible to use synonyms in import foreign schema "LIMIT TO ()"?
β