Dear developer team.
We have the following situation:
- exists main database A which allows access to user B:
- GRANT ALL ON DATABASECHANGELOG TO B;
GRANT ALTER, UPDATE, SELECT, INSERT, DELETE ON DATABASECHANGELOGLOCK TO B;
- exists second database B which connects tables as synonym:
I think it would be nice feature to interpret table synonyms as tables.
- CREATE OR REPLACE EDITIONABLE SYNONYM DATABASECHANGELOG FOR A.DATABASECHANGELOG;
CREATE OR REPLACE EDITIONABLE SYNONYM DATABASECHANGELOGLOCK FOR A.DATABASECHANGELOGLOCK;
I think it would be nice feature to interpret table synonyms as tables.