How to run & view the out put of procedures in SQL:\>

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • sunarb
    New Member
    • Mar 2008
    • 7

    How to run & view the out put of procedures in SQL:\>

    i dont know how to run and view the out of the procedures created in sql command prompt in windows xp.please guide me.
    ex:how to view the out put of dbms_output.put _line("Hello"); on the sql command prompt.
  • QVeen72
    Recognized Expert Top Contributor
    • Oct 2006
    • 1445

    #2
    Hi,

    Open the SQL Worksheet,
    Type this :

    SET SERVEROUTPUT ON;
    dbms_output.put _line('Hello');

    and Execute it..


    Regards
    Veena

    Comment

    • amitpatel66
      Recognized Expert Top Contributor
      • Mar 2007
      • 2358

      #3
      You will need to run this SET command to view the output of dbms_output package;

      [code=oracle]
      SQL> SET SERVEROUTPUT ON
      SQL>

      <now you execute your pl/sql code>

      [/code]

      Comment

      Working...