<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: dbms_output in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/dbms-output/m-p/3186077#M796091</link>
    <description>John&lt;BR /&gt;&lt;BR /&gt;Blank lines can be done just with&lt;BR /&gt;&lt;BR /&gt;dbms_output.put_line('') ; &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;If you want to use leading spaces, you need to specify FORMAT WRAP before firing off the pl/sql&lt;BR /&gt;&lt;BR /&gt;eg &lt;BR /&gt;SET SERVEROUTPUT ON SIZE 1000000 FORMAT WRAP&lt;BR /&gt;&lt;BR /&gt;-- Graham</description>
    <pubDate>Mon, 09 Feb 2004 07:18:27 GMT</pubDate>
    <dc:creator>Graham Cameron_1</dc:creator>
    <dc:date>2004-02-09T07:18:27Z</dc:date>
    <item>
      <title>dbms_output</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dbms-output/m-p/3186075#M796089</link>
      <description>Is it possible to use dbms_output.put_line to print a blank line?&lt;BR /&gt;&lt;BR /&gt;also&lt;BR /&gt;&lt;BR /&gt;When outputing a data line can this start with spaces?&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;John.</description>
      <pubDate>Mon, 09 Feb 2004 04:49:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dbms-output/m-p/3186075#M796089</guid>
      <dc:creator>John Flanagan</dc:creator>
      <dc:date>2004-02-09T04:49:47Z</dc:date>
    </item>
    <item>
      <title>Re: dbms_output</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dbms-output/m-p/3186076#M796090</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;use chr(10) for blank lines...&lt;BR /&gt;Tried these:&lt;BR /&gt;&lt;BR /&gt;yd@MYDB.MU&amp;gt; exec dbms_output.put_line('Hello');&lt;BR /&gt;Hello&lt;BR /&gt;&lt;BR /&gt;PL/SQL procedure successfully completed.&lt;BR /&gt;&lt;BR /&gt;Elapsed: 00:00:01.94&lt;BR /&gt;yd@MYDB.MU&amp;gt; exec dbms_output.put_line(chr(10)||'Hello'||chr(10));&lt;BR /&gt;&lt;BR /&gt;Hello&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;PL/SQL procedure successfully completed.&lt;BR /&gt;&lt;BR /&gt;Elapsed: 00:00:00.00&lt;BR /&gt;yd@MYDB.MU&amp;gt;&lt;BR /&gt;&lt;BR /&gt;hope this helps!&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;Yogeeraj</description>
      <pubDate>Mon, 09 Feb 2004 07:07:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dbms-output/m-p/3186076#M796090</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2004-02-09T07:07:26Z</dc:date>
    </item>
    <item>
      <title>Re: dbms_output</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dbms-output/m-p/3186077#M796091</link>
      <description>John&lt;BR /&gt;&lt;BR /&gt;Blank lines can be done just with&lt;BR /&gt;&lt;BR /&gt;dbms_output.put_line('') ; &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;If you want to use leading spaces, you need to specify FORMAT WRAP before firing off the pl/sql&lt;BR /&gt;&lt;BR /&gt;eg &lt;BR /&gt;SET SERVEROUTPUT ON SIZE 1000000 FORMAT WRAP&lt;BR /&gt;&lt;BR /&gt;-- Graham</description>
      <pubDate>Mon, 09 Feb 2004 07:18:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dbms-output/m-p/3186077#M796091</guid>
      <dc:creator>Graham Cameron_1</dc:creator>
      <dc:date>2004-02-09T07:18:27Z</dc:date>
    </item>
    <item>
      <title>Re: dbms_output</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dbms-output/m-p/3186078#M796092</link>
      <description>hi again,&lt;BR /&gt;&lt;BR /&gt;for leading spaces, the best i could do till now is:&lt;BR /&gt;&lt;BR /&gt;yd@MYDB.MU&amp;gt; exec dbms_output.put_line('.'||'    '||'Hello');&lt;BR /&gt;.    Hello&lt;BR /&gt;&lt;BR /&gt;PL/SQL procedure successfully completed.&lt;BR /&gt;&lt;BR /&gt;Elapsed: 00:00:00.48  &lt;BR /&gt;&lt;BR /&gt;working on it&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;Yogeeraj</description>
      <pubDate>Mon, 09 Feb 2004 07:20:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dbms-output/m-p/3186078#M796092</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2004-02-09T07:20:41Z</dc:date>
    </item>
    <item>
      <title>Re: dbms_output</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dbms-output/m-p/3186079#M796093</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;The only solution that seems to work is '.'.  I have been using this but it does not give the best output.   The chr(10) solution seems to skip 2 lines.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;John.</description>
      <pubDate>Mon, 09 Feb 2004 09:13:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dbms-output/m-p/3186079#M796093</guid>
      <dc:creator>John Flanagan</dc:creator>
      <dc:date>2004-02-09T09:13:18Z</dc:date>
    </item>
    <item>
      <title>Re: dbms_output</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/dbms-output/m-p/3186080#M796094</link>
      <description>If you don't mind the ringing in your ears, you might try this....&lt;BR /&gt;&lt;BR /&gt;  1  begin&lt;BR /&gt;  2     dbms_output.enable(200000);&lt;BR /&gt;  3     dbms_output.put_line('Line 1');&lt;BR /&gt;  4     dbms_output.put_line(chr(7));&lt;BR /&gt;  5     dbms_output.put_line('Line 2');&lt;BR /&gt;  6* end;&lt;BR /&gt;SQL&amp;gt; /&lt;BR /&gt;Line 1&lt;BR /&gt;&lt;BR /&gt;Line 2&lt;BR /&gt;&lt;BR /&gt;PL/SQL procedure successfully completed.&lt;BR /&gt;&lt;BR /&gt;SQL&amp;gt;&lt;BR /&gt;&lt;BR /&gt;The chr(7) is the bell character which won't print and should be benign to most printers and terminals. You could try some other unprintable characters like chr(1) stx if memory serves. It didn't bother my hpterm emulator.&lt;BR /&gt;&lt;BR /&gt;good luck</description>
      <pubDate>Mon, 09 Feb 2004 20:45:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/dbms-output/m-p/3186080#M796094</guid>
      <dc:creator>R. Allan Hicks</dc:creator>
      <dc:date>2004-02-09T20:45:47Z</dc:date>
    </item>
  </channel>
</rss>

