up vote 3 down vote favorite
share [g+] share [fb]

What's a good PL/SQL source code analysis tool?

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

Only one I'm aware of is toad

link|improve this answer
feedback

Have you tried setting this before compiling your packages:

ALTER SESSION SET PLSQL_WARNINGS='ENABLE:ALL';

This will give you warnings about unreachable code, etc.

link|improve this answer
feedback

See the SD CloneDR for PL/SQL for a tool that finds duplicated code across large sets of PL/SQL scripts. It typically finds 10-20% redundant code; removing this code can help lower your maintenance costs.

The site has example clone detection reports for many languages, but not an example for PL/SQL. The tool does exist, though.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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