Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Good Oracle database development and management tool on Windows [closed]

I'm looking for an Oracle database management tool like sql server management studio. I've searched the internet and found a lot of tools on the following link:

http://www.freedownloadscenter.com/Search/oracle.html.

But I don't know which one is better.

I need a stable and easy-to-use GUI tool for working on windows.

like image 682
Mostafa Elmoghazi Avatar asked Dec 08 '22 02:12

Mostafa Elmoghazi


2 Answers

The best free ones are (in no particular order)

  • SQL Developer
  • TOra
  • TOAD
  • Oracle Enterprise Manager (parts are included in the licence)
  • Eclipse plugin - SQL Explorer

The best commercial ones are (in no particular order)

  • TOAD
  • DBArtisan
  • Oracle Enterprise Manager
  • PL/SQL Developer
like image 114
2 revs Avatar answered Jan 05 '23 20:01

2 revs


My shop uses an open-source Eclipse plugin called SQL Explorer: http://eclipsesql.sourceforge.net/ It has good stuff for examining schemata; it integrates with your source code control system; it works on other database table servers too.

We also use a commercial tool called PL/SQL Developer: http://www.allroundautomations.com/plsqldev.html This tool has a "SQL Beautifier" which can tidy up some of the hairiest queries you can imagine. In tidying them up, it helps the one writing the query find typos. It also has a context menu that will do "EXPLAIN PLAN" on a query that's already running, and a way to stop a running query. Those are incredibly handy tools.

Carpenteri mentioned Oracle Enterprise Manager. That comes with your Oracle thick client. I find it helpful for getting an instance-wide view of what's going on in your server.

like image 25
O. Jones Avatar answered Jan 05 '23 20:01

O. Jones