Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I view a Tree list of Schemas for a database in Oracle SQL Developer?

Tags:

oracle

How do I view the schemas, that belong to a database in SQL Developer? I am trying to get a view similar to Toad. In that you have the database name at the parent level, all the schemas below it which are then expandable to view all the objects that belong to that particular schema.

like image 855
TampaRich Avatar asked Aug 13 '09 14:08

TampaRich


People also ask

How can I see all schemas in SQL Developer?

To open, right-click on the connection name and select Schema Browser. It also helps to browse through other schemas based on the permissions granted in the database.

How can I see all schemas in database?

SQL> select distinct owner from dba_objects; >> Will give you the list of schemas available. select username from dba_users; this output will list all users including sysdba,system and others.

How do I view schemas?

To show the schema, we can use the DESC command. This gives the description about the table structure.


2 Answers

Expand the "Other Users" node.

like image 81
dpbradley Avatar answered Oct 13 '22 08:10

dpbradley


Two steps :

  • Right click on the connection you have created
  • Choose option Schema Browser to get the view of all schema in the drop down list along with the tables.
like image 33
Ashu Avatar answered Oct 13 '22 07:10

Ashu