How to print variables in PL/SQL blocks

Dishant

Member
This is the prob

I want to print values of variables local to a PL/SQL block in Oracle 10g.
What should i do?

I know we use dbms_output.putline() method in Oracle 8i but what do we use in Oracle 10 g
 
You can still use dbms_output.put_line if you want. You can also use the debugger to view variable values at run-time.
 
Back
Top