What's a good PL/SQL source code analysis tool?
+1
A:
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.
WW
2009-05-01 01:45:34
A:
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.
Ira Baxter
2010-03-09 17:03:56