Нет понятия "доступность" схем ('schemata'). Схема - это не что иное, как набор объектов, принадлежащих данному владельцу. Единственное, что «доступно» - это отдельные объекты. И даже на уровне объектов не существует понятия «порядок», в котором они были бы доступны. Чтобы разрешить данное неквалифицированное имя объекта:
Управление разрешением имен объектов
Имена объектов, на которые ссылаются операторы SQL, могут состоять из нескольких частей, разделенных точками. Далее описывается, как база данных разрешает имя объекта.
Oracle Database attempts to qualify the first piece of the name referenced in the SQL statement. For example, in scott.emp, scott is the first piece. If there is only one piece, the one piece is considered the first piece.
In the current schema, the database searches for an object whose name matches the first piece of the object name. If it does not find such an object, it continues with step b.
The database searches for a public synonym that matches the first piece of the name. If it does not find one, it continues with step c.
The database searches for a schema whose name matches the first piece of the object name. If it finds one, it returns to step b, now using the second piece of the name as the object to find in the qualified schema. If the second piece does not correspond to an object in the previously qualified schema or there is not a second piece, the database returns an error.
If no schema is found in step c, the object cannot be qualified and the database returns an error.
(https://docs.oracle.com/cd/B28359_01/server.111/b28310/general008.htm#ADMIN11561)
Если вы хотите увидеть, какие схемы имеют объекты, на которые может ссылаться текущий пользователь, вы можете:
select distinct owner
from all_objects
order by owner;