1
votes

I have 2 schema, schemaA and schemaB. My application consist on schemaA and i can find all the tables of schemaA when create a form in oracle Apex but in the same application i want to create a form of schemaB table

how will it possible please help ?

3
did you find a solution? I was able to add another schema to my workspace but I still can't figure how to query itMrE
found the answer here: stackoverflow.com/questions/13709164/…MrE

3 Answers

0
votes

To add another schema to your workspace you have to connect INTERNAL workspace (this workspace controls all other APEX workspaces in your Oracle container) and select menu "Manage Workspaces\Workspace Details". Then press the button "Schema Assigments" and then press the button "Add Schema" which runs "Add Schema" master. It guide you in four simple steps. In this manner you can add any numbers of schema to your workspace.

-1
votes

You need to stick with database fundamentals. SchemaA needs SELECT access on schemaB.table_name.

I haven't tried with recent 19.x version, but APEX previously doesn't behave too well with synonyms in declarative forms, so you may need to define access via views.