view values of variables from oracle PL/SQL - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T06:24:01Z http://stackoverflow.com/feeds/question/254697 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/254697/view-values-of-variables-from-oracle-pl-sql 2 view values of variables from oracle PL/SQL Jeff 2008-10-31T19:43:57Z 2009-02-14T20:46:42Z <p>I'm running a PL/SQL block that is supposed to be calling a stored procedure who's output parameters are supposed to be populating variables in the PL/SQL block.</p> <p>The procedure compiles, and the PL/SQL block runs successfully. But I'd like to check the values of the variables populated by the procedure. Is there a way to output these values?</p> <p>I'm using Free TOAD if that helps. </p> <p>Thanks,</p> http://stackoverflow.com/questions/254697/view-values-of-variables-from-oracle-pl-sql/254727#254727 2 Answer by James Curran for view values of variables from oracle PL/SQL James Curran 2008-10-31T19:53:26Z 2008-10-31T19:53:26Z <pre><code>dbms_output.put_line(varHere); </code></pre> http://stackoverflow.com/questions/254697/view-values-of-variables-from-oracle-pl-sql/255169#255169 2 Answer by darreljnz for view values of variables from oracle PL/SQL darreljnz 2008-10-31T22:43:33Z 2008-10-31T22:43:33Z <p>You have a few options:</p> <ul> <li>Log with DBMS_OUTPUT</li> <li>Log to a file using UTL_FILE</li> <li>Use the Oracle debugger DBMS_DEBUG</li> </ul> <p>My preference is to log to a file using a fairly simple custom logging package. In my custom logging package I have a configurable flag to switch between file logging and DBMS_OUTPUT logging.</p> <p>The Oracle debugging API's are quite good but you definitely need a good debugging client. Oracle SQL Developer has fairly good support for it.</p> <p>There is also a log4plsql logger but I haven't used it.</p> http://stackoverflow.com/questions/254697/view-values-of-variables-from-oracle-pl-sql/549713#549713 0 Answer by Dwayne King for view values of variables from oracle PL/SQL Dwayne King 2009-02-14T20:11:23Z 2009-02-14T20:11:23Z <p>A fourth option (the one I usually default to) also exists.....logging debugging messages to a database table. This gives you the advantage of being able to sort, query, filter your debug messages as required.</p> <p>As darreljnz mentioned above, log4plsql also probably supports logging to the database. I find that 1) dbms_output has too many limitations 2) logging to a file requires too much setup, and a database restart if the utl_file_dir parameter is not already set 3) using dbms_debug without the help of a GUI is very cumbersome (but I've done it)</p> http://stackoverflow.com/questions/254697/view-values-of-variables-from-oracle-pl-sql/549777#549777 0 Answer by Aussie Craig for view values of variables from oracle PL/SQL Aussie Craig 2009-02-14T20:46:42Z 2009-02-14T20:46:42Z <p>If you can download a copy of Oracle jDeveloper <a href="http://www.oracle.com/technology/products/jdev/index.html" rel="nofollow">jDeveloper Home page</a> or Oracle Visual Studio add in <a href="http://www.oracle.com/technology/tech/dotnet/tools/index.html" rel="nofollow">VS Plugin</a>. Both are free, and allow you to debug (set breakpoint, inspect variables, ...) in PL/SQL on the db. You also need a "debug" privledge on the DB to do this. But, if you have dba rights you can grant that.</p>