Oracle SQL Developer multiple table views

OracleOracle Sqldeveloper

Oracle Problem Overview


In Oracle SQL Developer, one can list the data in a table using the Data tab when viewing a table. there where can add, delete, edit or just viewing records of table currently viewd

the problem is that we often really need to view more than one table at once, then we need more than one tab opened, thing that i dont know how to do that, any sugestion. tq in advance

Oracle Solutions


Solution 1 - Oracle

SQL Developer can start a new tab every time you select a database object to view; but, you will have to close the tab manually.

Set this in: Tools->Preferences->Database->ObjectViewer->Automatically Freeze Object Viewer Windows

Solution 2 - Oracle

You can pin a tab by clicking the button below :

![Tab pin button][1] [1]: http://i.stack.imgur.com/V2if9.png


No need to configure anything, plus sometimes you don't want to have a tab automatically pinned.

Solution 3 - Oracle

Jeff Smith posted a nice write up on how to do this in SQL Developer.

There are multiple ways to do it.

  • Freeze content (ctrl-shift-P)
  • New Document Tab Group (will allow viewing tables simultaneously)
  • Change the preferences (If this is desired default behavior)

The post can be found here.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionuser232627View Question on Stackoverflow
Solution 1 - Oraclea70mView Answer on Stackoverflow
Solution 2 - OracleJerome DalbertView Answer on Stackoverflow
Solution 3 - OracleNathanView Answer on Stackoverflow