vote up 3 vote down star

There are many options for editing and writing Stored Procedures in Oracle; what is the best tool for you and why? (one tool per answer.)

flag

36% accept rate

22 Answers

vote up 0 vote down

I just used a standard editor (vim which then gave me syntax highlighting).

/Allan

link|flag
vote up 0 vote down

I like SQL Developer from Oracle. Oh and its free! :)

link|flag
vote up 0 vote down

I like Rapid SQL, you can debug SQL too

link|flag
vote up 6 vote down

I recently found the free Oracle SQL Developer.

  • nice looking GUI (makes you not poke out your eyes like the usual Oracle tools)
  • has many nice features, like showing tables filtered
  • lets you connect to multiple oracle instances at once
  • you can use sane configuration like ip:port username/password and do not have to use those strange TNSNAMES.ORA file based settings
  • you can set breakpoints and step through the code of stored procedures.
link|flag
Yes, but it is a memory hog. – minty Nov 22 '08 at 4:07
vote up 1 vote down

But some at our place swear by Toad

link|flag
vote up 2 vote down

Toad, from ToadSoft.com -> http://www.toadsoft.com/toad_oracle.htm

For someone like me who likes to work with a DBA tool like Microsoft's SQL Management Studio, it's a life saver.

link|flag
vote up 8 vote down

Tool for Oracle Application Developers (TOAD), from Quest Software (formerly TOADSoft) has an excellent Stored Procedure editor with syntax highlighting, some autocomplete support (e.g. type in 'TABLE.' and the columns will appear), a nice Execute Procedure option that will show the results in a Grid or show DBMS output, and will also focus on syntax errors when you hit compile.

Note: The Freeware edition only allows 2 concurrent connections to the same Database Instance (even though the website says 5) - that means only 2 developers or DBA's can use it at the same time on the same Database. It also expires every 3 months but they're good at releasing updates.

link|flag
vote up 1 vote down

Notepad++ stays my favourite editor. I had to use SQL Developer in the past, it's not so "bad", but I encountered many problems with it. It proved very unstable so I wouldn't recommend it, or maybe only to test your procedures.

link|flag
vote up 0 vote down

I use JetBrains IDEA (a Java IDE) to edit and SQL*Plus to execute. The advantages of using a tool with local version control, seemless integration into Source Version Control, advanced find and highlighting, great editing, 'live templates' and so on for me outweighs any advantage of having it 'database aware' (which with plug-ins you can get anyway). If I was coding up a complicated query I might fire up SQL Developer, but generally I prefer great text editing features.

link|flag
vote up 3 vote down

PL/SQL Developer from Allaround Automations.

I happily paid the $200 or so price for this.

Excellent IDE (+ good Intellisense, + debugging capability) with easy creation and editing of PL/SQL packages, SPs, Triggers etc

So much better than Toad.

link|flag
vote up 1 vote down

As a professional PL/SQL developer I use (heh) PL/SQL Developer from Allaround Automations. I've worked with TOAD for quite a long time but now it is quite overpriced comparing with PL/SQL dev. It has some advantages like knowledge base or ability to work with other RDBMS like SQL server but that's not a necessity for me.

But Notepad++ will always help to make occasional fix.

link|flag
vote up 0 vote down

I use Oracle SQL Developer - the latest version also has support for CVS and Subversion.

It has the bonus of supporting other database providers, too.

I have used this tool for 2 years and it has now settled down to be reliable.

link|flag
vote up 0 vote down

I've used RapidSQL by Embarcadero on several different DB platforms, and it's awesome. It has an integrated step debugger, too. I haven't actually used it with Oracle, but I know it's supported.

link|flag
vote up 0 vote down

Another vote for Oracle SQL Developer. It's free, it's stable and it does all the basics that I require.

link|flag
vote up 0 vote down

With the mentioned SQL Developer you can even set breakpoints and step through the code of the stored procedure.

link|flag
vote up 0 vote down

Yet another vote for Oracle SQl Developer. But TOAD works too.

link|flag
vote up 0 vote down

Use Oracle's own SQL Developer. If you are mainly working with Oracle, it does everything you'll need.

link|flag
vote up 0 vote down

I use TOAD with our Oracle reports development, and I think that it's a good development tool. I normally toggle back and forth between a number of different Oracle instances and schemae, and I like the way that TOAD can display multiple windows for each instance/schema, or even more than one per schema.

TOAD takes a little while to learn and customize, but it's a worthwhile investment. The layout is similar to the Visual Studio .NET IDE with sidebars that can be anchored or rolled away. Tabs display different aspects of the Oracle schema, including procedures, jobs, stats, etc. And when I'm writing SQL, the editor uses color-coding and the error messages are Oracle-specific.

link|flag
vote up 0 vote down

Toolset for Oracle (TOra) is a free, Open Source Database Tool very similar in scope (and look and feel) to Quest's TOAD

Compared to the freeware edition of TOAD, TOra allows multiple connections to different database instances at the same time, and has no concurrent connection limit (so any number of TOra users can be working on the same database instance)

link|flag
vote up 0 vote down

A really good text editor with syntax highlighting (e.g. Textpad from www.textpad.com) and SQL Plus.

link|flag
vote up 1 vote down

I always use PL/SQL Developer from Allround Automations.

http://www.allroundautomations.com/plsqldev.html

link|flag
vote up 0 vote down

For me its, Oracle SQL Developer. The learning curve is very minimal if you have worked on IDEs like Eclipse or VS. You can set break points, read live values when you debug stored procs as you would do to code in eclipse/VS. Ofcourse the UI is a bit sluggish at times but given that its free compensates the sluggishness.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.