PL/SQL compilation fails with no error message - Stack Overflow most recent 30 from stackoverflow.com2009-11-22T21:09:18Zhttp://stackoverflow.com/feeds/question/283061http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/283061/pl-sql-compilation-fails-with-no-error-message2PL/SQL compilation fails with no error messageMatthew Watson2008-11-12T04:36:47Z2009-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> ALTER PACKAGE FLOWS_020000.WWV_FLOW_QUERY COMPILE BODY;
Warning: Package Body altered with compilation errors.
SQL> show err
No errors.
SQL>
SQL> ALTER PACKAGE FLOWS_020000.WWV_FLOW_QUERY COMPILE;
Warning: Package altered with compilation errors.
SQL> show err
No errors.
SQL>
</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#2830852Answer by Gary for PL/SQL compilation fails with no error messageGary2008-11-12T04:54:26Z2008-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#2831181Answer by WW for PL/SQL compilation fails with no error messageWW2008-11-12T05:25:21Z2008-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#2832882Answer by cagcowboy for PL/SQL compilation fails with no error messagecagcowboy2008-11-12T08:09:55Z2008-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#6299080Answer by Matthew Watson for PL/SQL compilation fails with no error messageMatthew Watson2009-03-10T12:28:46Z2009-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#8858720Answer by Jamie Love for PL/SQL compilation fails with no error messageJamie Love2009-05-20T02:12:46Z2009-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>