PL/SQL compilation fails with no error message - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T21:09:18Z http://stackoverflow.com/feeds/question/283061 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/283061/pl-sql-compilation-fails-with-no-error-message 2 PL/SQL compilation fails with no error message Matthew Watson 2008-11-12T04:36:47Z 2009-05-20T02:12:46Z <p>My installation of APEX has come pear shaped on a Oracle 9.2.0.5.0 instance, all the packages are invalid.</p> <p>I've tried recompiling everything with DBMS_UTILITY.compile_schema, but still all the packages are invalid. So, tried recompiling individual packages,</p> <pre><code>SQL&gt; ALTER PACKAGE FLOWS_020000.WWV_FLOW_QUERY COMPILE BODY; Warning: Package Body altered with compilation errors. SQL&gt; show err No errors. SQL&gt; SQL&gt; ALTER PACKAGE FLOWS_020000.WWV_FLOW_QUERY COMPILE; Warning: Package altered with compilation errors. SQL&gt; show err No errors. SQL&gt; </code></pre> <p>nothing in the alter log for it..</p> <p>How can I find what the error is? shouldn't "show err" give it to me?</p> http://stackoverflow.com/questions/283061/pl-sql-compilation-fails-with-no-error-message/283085#283085 2 Answer by Gary for PL/SQL compilation fails with no error message Gary 2008-11-12T04:54:26Z 2008-11-12T04:54:26Z <p>try </p> <pre><code>SHOW ERRORS PACKAGE BODY FLOWS_020000.WWV_FLOW_QUERY </code></pre> http://stackoverflow.com/questions/283061/pl-sql-compilation-fails-with-no-error-message/283118#283118 1 Answer by WW for PL/SQL compilation fails with no error message WW 2008-11-12T05:25:21Z 2008-11-12T05:25:21Z <pre><code>SHOW ERRORS PACKAGE FLOWS_020000.WWV_FLOW_QUERY </code></pre> http://stackoverflow.com/questions/283061/pl-sql-compilation-fails-with-no-error-message/283288#283288 2 Answer by cagcowboy for PL/SQL compilation fails with no error message cagcowboy 2008-11-12T08:09:55Z 2008-11-12T08:09:55Z <p>Conn as FLOWS_020000 and go:</p> <pre><code>SELECT * FROM ALL_ERRORS WHERE OWNER = USER; </code></pre> <p>Or conn as SYSTEM and go</p> <pre><code>SELECT * FROM ALL_ERRORS WHERE OWNER = 'FLOWS_020000'; </code></pre> http://stackoverflow.com/questions/283061/pl-sql-compilation-fails-with-no-error-message/629908#629908 0 Answer by Matthew Watson for PL/SQL compilation fails with no error message Matthew Watson 2009-03-10T12:28:46Z 2009-03-10T12:28:46Z <p>After giving up on this problem for a few months, then coming back to it, I worked it out.</p> <p>The package I was trying to compile had been wrapped. Apparently, you when compiling wrapped packages, you must be logged in as the package owner.</p> <p>I suspect a bug was also at play here, as some deeper investigation showed when compiling not as the owner, the server process was actually running out of memory and dying, but logging in as the package owner allowed the object to be compiled without issue.</p> http://stackoverflow.com/questions/283061/pl-sql-compilation-fails-with-no-error-message/885872#885872 0 Answer by Jamie Love for PL/SQL compilation fails with no error message Jamie Love 2009-05-20T02:12:46Z 2009-05-20T02:12:46Z <p>I had the same issue today. I found that I was doing (as XXX):</p> <pre><code>alter package XXX.my_package compile body; </code></pre> <p>It would error, and then a <code>show err</code> would not actually show any error.</p> <p>Removing the 'XXX.' allowed me to see the errors.</p>