DBAsupport.com Forums - Powered by vBulletin
Results 1 to 3 of 3

Thread: Query

  1. #1
    Join Date
    Apr 2003
    Location
    Hyderabad
    Posts
    40

    Query

    How to display the query result from pl/sql on the Sql screen.

  2. #2
    Join Date
    Jan 2002
    Location
    Up s**t creek
    Posts
    1,525
    set serveroutput on
    Jim
    Oracle Certified Professional
    "Build your reputation by helping other people build theirs."

    "Sarcasm may be the lowest form of wit but its still funny"

    Click HERE to vist my website!

  3. #3
    Join Date
    Jan 2001
    Posts
    81
    something like that

    cursor1 is select blah blah
    for c1 in cursor1
    loop
    dbms_output.put_line(cursor1.blah||'' ''||blah blah);
    end loop


    Eugene
    OCP

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width