What's a good PL/SQL source code analysis tool? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T13:48:21Z http://stackoverflow.com/feeds/question/807120 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/807120/whats-a-good-pl-sql-source-code-analysis-tool 1 What's a good PL/SQL source code analysis tool? happyappa 2009-04-30T14:14:06Z 2009-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#807193 2 Answer by Matthew Watson for What's a good PL/SQL source code analysis tool? Matthew Watson 2009-04-30T14:27:04Z 2009-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#809893 1 Answer by WW for What's a good PL/SQL source code analysis tool? WW 2009-05-01T01:45:34Z 2009-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>