Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Simple Create Procedure Problem..
"Arijit Chatterjee" <arijitchatterjee123_at_yahoo.co.in> wrote in message
news:ea01504d.0412010134.65ddfb35_at_posting.google.com...
| Respected Faculties,
| As per your instruction at last I have created the procedure.But I
| want to see the output in variable "Open_Bal".
|
you need to enable DBMS_OUPUT in your calling program
in SQL*Plus, you do this with the command SET SERVEROUTPUT ON
get the SQL*Plus User's Guide and Reference (and the SQL Reference manual while you're at it) and check out other options to the SET SERVEROUPUT on command
also, begin to get familiar with the differences between SQL*Plus commands and SQL & PL/SQL statements (for example, SET SERVEROUTPUT ON and EXECUTE and a SQL*Plus command, it will not work in other environments like TOAD, C++, etc -- look up ANONYMOUS BLOCKS in the PL/SQL manual and CALL in the SQL manual for alternatives to EXECUTE that you can use in all environments.)
++ mcs Received on Wed Dec 01 2004 - 04:17:59 CST
![]() |
![]() |