Cannot list tables (views, packages etc) from Oracle 11 database using sql explorer, but can see them using PL/SQL Developer

dba.stackexchange https://dba.stackexchange.com/questions/196359

Frage

I am connecting to oracle 11 DB.

When I connect with PL/SQL, I can explore all the objects :

enter image description here

However when accessing this same DB using Oracle SQL Developer, expanding the different objects results in empty list

enter image description here

Any ideas why this might be?

War es hilfreich?

Lösung

SQLDeveloper shows tables that are owned by the logged in user. To see other users' tables, right click on connection ("dev" in your case), click "Schema Browser", and then select a user whose object you want to see.

Or directly query system views (e.g. all_tables )

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit dba.stackexchange
scroll top