What's a good PL/SQL source code analysis tool? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T13:48:21Zhttp://stackoverflow.com/feeds/question/807120http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/807120/whats-a-good-pl-sql-source-code-analysis-tool1What's a good PL/SQL source code analysis tool?happyappa2009-04-30T14:14:06Z2009-05-01T01:45:34Z
<p>What's a good PL/SQL source code analysis tool?</p>
http://stackoverflow.com/questions/807120/whats-a-good-pl-sql-source-code-analysis-tool/807193#8071932Answer by Matthew Watson for What's a good PL/SQL source code analysis tool?Matthew Watson2009-04-30T14:27:04Z2009-04-30T14:27:04Z<p>Only one I'm aware of is <a href="http://www.quest.com/oracle/" rel="nofollow">toad</a></p>
http://stackoverflow.com/questions/807120/whats-a-good-pl-sql-source-code-analysis-tool/809893#8098931Answer by WW for What's a good PL/SQL source code analysis tool?WW2009-05-01T01:45:34Z2009-05-01T01:45:34Z<p>Have you tried setting this before compiling your packages:</p>
<pre><code>ALTER SESSION SET PLSQL_WARNINGS='ENABLE:ALL';
</code></pre>
<p>This will give you warnings about unreachable code, etc.</p>