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

is there any tool, library that can analyze plsql code, like PMD/CheckStyle do for Java ?

link|improve this question

36% accept rate
feedback

4 Answers

Quest's TOAD is a good tool for working with PL/SQL, but it is not free or lightweight. It provides formatting, color support in the editor for keywords, intellisense, and it will also provide analysis tools to rate the code's cyclomatic complexity, best practices, and more.

link|improve this answer
feedback

I think that Oracle's SQL Developer might do the trick for you (it is free)

http://www.oracle.com/technology/products/database/sql_developer/index.html

link|improve this answer
feedback

See our CloneDR. This tool finds exact or near-miss duplicated code, regardless of reformatting or renaming of identifiers. Applied to a system of several hundred thousand lines of PLSQL code, it found about 15% redundant (e.g., removable) code.

link|improve this answer
+1. That program is pretty awesome. – jonearles Sep 1 '11 at 2:43
feedback

Check out:

http://www.sqlinform.com/

Tool for re-formatting SQL source with many configurable options. Free online version.

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.