<?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: Formatting v$sqltext.SQL_TEXT in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/formatting-v-sqltext-sql-text/m-p/3243365#M891583</link>
    <description>Hi Nicolas,&lt;BR /&gt;&lt;BR /&gt;perhaps you overlooked a small detail.&lt;BR /&gt;A ten is made of a 1 and a 0 and not only of&lt;BR /&gt;a 0!&lt;BR /&gt;You have given Hein 0 points for the last post!&lt;BR /&gt;&lt;BR /&gt;greetings,&lt;BR /&gt;&lt;BR /&gt;Michael&lt;BR /&gt;</description>
    <pubDate>Fri, 09 Apr 2004 06:15:50 GMT</pubDate>
    <dc:creator>Michael Schulte zur Sur</dc:creator>
    <dc:date>2004-04-09T06:15:50Z</dc:date>
    <item>
      <title>Formatting v$sqltext.SQL_TEXT</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/formatting-v-sqltext-sql-text/m-p/3243357#M891575</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;Does anybody have a method to get a human readable output on the SQL_TEXT field when looking at a running session this way :&lt;BR /&gt;&lt;BR /&gt;SELECT&lt;BR /&gt;        'EN COURS' REQ,&lt;BR /&gt;        v$session.sid,&lt;BR /&gt;        piece,&lt;BR /&gt;        SQL_TEXT&lt;BR /&gt;FROM&lt;BR /&gt;        v$SESSION,&lt;BR /&gt;        v$SQLTEXT SQLTEXT&lt;BR /&gt;WHERE&lt;BR /&gt;        v$SESSION.SQL_ADDRESS= SQLTEXT.ADDRESS AND&lt;BR /&gt;        SQLTEXT.HASH_VALUE = v$SESSION.SQL_HASH_VALUE AND&lt;BR /&gt;        v$SESSION.SID = &amp;amp;1&lt;BR /&gt;ORDER BY&lt;BR /&gt;        v$session.sid,&lt;BR /&gt;        v$session.username,&lt;BR /&gt;        v$session.osuser,&lt;BR /&gt;        piece&lt;BR /&gt;;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thank for you help,&lt;BR /&gt;&lt;BR /&gt;Nicolas</description>
      <pubDate>Thu, 08 Apr 2004 04:35:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/formatting-v-sqltext-sql-text/m-p/3243357#M891575</guid>
      <dc:creator>Nicolas Dumeige</dc:creator>
      <dc:date>2004-04-08T04:35:00Z</dc:date>
    </item>
    <item>
      <title>Re: Formatting v$sqltext.SQL_TEXT</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/formatting-v-sqltext-sql-text/m-p/3243358#M891576</link>
      <description>You can define a column characterstics as below before firing a SQL:&lt;BR /&gt;&lt;BR /&gt;column sql_text heading "SQLTEXT" word_wrapped justify right format A(30) &lt;BR /&gt;&lt;BR /&gt;Instead of word_wrapped, wrapped (default), truncated can also be used.&lt;BR /&gt;&lt;BR /&gt;sks</description>
      <pubDate>Thu, 08 Apr 2004 05:00:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/formatting-v-sqltext-sql-text/m-p/3243358#M891576</guid>
      <dc:creator>Sanjay Kumar Suri</dc:creator>
      <dc:date>2004-04-08T05:00:33Z</dc:date>
    </item>
    <item>
      <title>Re: Formatting v$sqltext.SQL_TEXT</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/formatting-v-sqltext-sql-text/m-p/3243359#M891577</link>
      <description>I created a script for a similar need a while back. I expect you can either use it as is, or fix it up rapidly. Included below, and attached.&lt;BR /&gt;Enjoy,&lt;BR /&gt;Hein&lt;BR /&gt;&lt;BR /&gt;usage: perl pretty.pl &amp;lt; tmp.lst&lt;BR /&gt;&lt;BR /&gt;$x{"SELECT"}="\n";&lt;BR /&gt;$x{"INSERT"}="\n";&lt;BR /&gt;$x{"UPDATE"}="\n";&lt;BR /&gt;$x{"WHERE"}="  ";&lt;BR /&gt;$x{"FROM"}="   ";&lt;BR /&gt;$x{"INTO"}="   ";&lt;BR /&gt;$x{"AND"}="    ";&lt;BR /&gt;$x{"OR"}="     ";&lt;BR /&gt;$x{"GROUP"}="  ";&lt;BR /&gt;$x{"ORDER"}="  ";&lt;BR /&gt;$x{"newline"}="        ";&lt;BR /&gt;while (&amp;lt;&amp;gt;) {&lt;BR /&gt;  if (length &amp;gt;= 64) {&lt;BR /&gt;    $data=1;&lt;BR /&gt;    $_ = substr($_,0,64);&lt;BR /&gt;    s/\(/ \(/g;&lt;BR /&gt;    s/\)/\) /g;&lt;BR /&gt;    s/\s+/ /g;&lt;BR /&gt;    s/^ //;&lt;BR /&gt;    $buf .= $_;&lt;BR /&gt;    } else {&lt;BR /&gt;    if ($data==0) {&lt;BR /&gt;      print;&lt;BR /&gt;      next;&lt;BR /&gt;      }&lt;BR /&gt;    @words = split (/\s/,$buf);&lt;BR /&gt;    foreach $word (@words) {&lt;BR /&gt;      if (defined( $x{$word} )) {&lt;BR /&gt;        print "$line\n";&lt;BR /&gt;        $line = $x{$word}.$word;&lt;BR /&gt;        } else {&lt;BR /&gt;        if (length($line) &amp;gt; 57) {&lt;BR /&gt;          print "$line\n";&lt;BR /&gt;          $line = $x{"newline"}.$word;&lt;BR /&gt;          } else {&lt;BR /&gt;          $line = $line . " " . $word;&lt;BR /&gt;          }&lt;BR /&gt;        }&lt;BR /&gt;      }&lt;BR /&gt;    print "$line\n";&lt;BR /&gt;    $line = "";&lt;BR /&gt;    $buf = "";&lt;BR /&gt;    }&lt;BR /&gt;  }&lt;BR /&gt;&lt;BR /&gt;Before:&lt;BR /&gt;&lt;BR /&gt;SELECT SQL_TEXT FROM v$SESSION, v$SQLTEXT SQLTEXT WHERE v$SESSIO&lt;BR /&gt;N.SQL_ADDRESS= SQLTEXT.ADDRESS AND SQLTEXT.HASH_VALUE = v$SESSIO&lt;BR /&gt;N.SQL_HASH_VALUE AND v$SESSION.SID = 25 ORDER BY v$session.sid,&lt;BR /&gt;v$session.username, v$session.osuser, piece&lt;BR /&gt;&lt;BR /&gt;After:&lt;BR /&gt;&lt;BR /&gt;SELECT SQL_TEXT&lt;BR /&gt;   FROM v$SESSION, v$SQLTEXT SQLTEXT&lt;BR /&gt;  WHERE v$SESSION.SQL_ADDRESS= SQLTEXT.ADDRESS&lt;BR /&gt;    AND SQLTEXT.HASH_VALUE = v$SESSION.SQL_HASH_VALUE&lt;BR /&gt;    AND v$SESSION.SID = 25&lt;BR /&gt;  ORDER BY v$session.sid, v$session.username, v$session.osuser,&lt;BR /&gt;        piece&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 08 Apr 2004 09:02:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/formatting-v-sqltext-sql-text/m-p/3243359#M891577</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2004-04-08T09:02:43Z</dc:date>
    </item>
    <item>
      <title>Re: Formatting v$sqltext.SQL_TEXT</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/formatting-v-sqltext-sql-text/m-p/3243360#M891578</link>
      <description>Sanjay : the format option is not enought&lt;BR /&gt;&lt;BR /&gt;Hein : &lt;BR /&gt;1) The script attached is not the perl one&lt;BR /&gt;2) The script does a good job, but the last line of the SQL reques is not processed !&lt;BR /&gt;&lt;BR /&gt;If I may suggest another improvement, the fields after the select might as well be displayed one per line.&lt;BR /&gt;&lt;BR /&gt;Anyway, this is what I'm looking for.&lt;BR /&gt;&lt;BR /&gt;Cheers &lt;BR /&gt;&lt;BR /&gt;Nicolas</description>
      <pubDate>Thu, 08 Apr 2004 09:17:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/formatting-v-sqltext-sql-text/m-p/3243360#M891578</guid>
      <dc:creator>Nicolas Dumeige</dc:creator>
      <dc:date>2004-04-08T09:17:31Z</dc:date>
    </item>
    <item>
      <title>Re: Formatting v$sqltext.SQL_TEXT</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/formatting-v-sqltext-sql-text/m-p/3243361#M891579</link>
      <description>&lt;BR /&gt;Ooops! I am surprised it works at all with the mangling of the spaces in the forum entry.&lt;BR /&gt;&lt;BR /&gt;Let me try that attach again....&lt;BR /&gt;&lt;BR /&gt;Hein.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 08 Apr 2004 09:32:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/formatting-v-sqltext-sql-text/m-p/3243361#M891579</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2004-04-08T09:32:14Z</dc:date>
    </item>
    <item>
      <title>Re: Formatting v$sqltext.SQL_TEXT</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/formatting-v-sqltext-sql-text/m-p/3243362#M891580</link>
      <description>Hein,&lt;BR /&gt;&lt;BR /&gt;Even with the detached script, it doesn'process the last line.&lt;BR /&gt;&lt;BR /&gt;Use the attached file if you want to see for your self.&lt;BR /&gt;&lt;BR /&gt;Nicolas</description>
      <pubDate>Thu, 08 Apr 2004 11:00:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/formatting-v-sqltext-sql-text/m-p/3243362#M891580</guid>
      <dc:creator>Nicolas Dumeige</dc:creator>
      <dc:date>2004-04-08T11:00:32Z</dc:date>
    </item>
    <item>
      <title>Re: Formatting v$sqltext.SQL_TEXT</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/formatting-v-sqltext-sql-text/m-p/3243363#M891581</link>
      <description>&lt;BR /&gt;The original script tried to handle multiple chunks of ugly-sql interspersed with text/data chunks, but it did not solve that problem good enough for your need (it was good enough for me back then! :-).&lt;BR /&gt;&lt;BR /&gt;Here is a version that does work on the last line, and handles your long comma seperated liste nicer (imho).&lt;BR /&gt;&lt;BR /&gt;I'm sure there is plenty wrong with it still (quoted strings, other key words,...) but it does the job on your examples.&lt;BR /&gt;&lt;BR /&gt;Included and attached (for spacing!).&lt;BR /&gt;&lt;BR /&gt;Hein.&lt;BR /&gt;&lt;BR /&gt;(btw... did you assign 3 points to put me on 1000 exactly in the hpux section? :-).&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;#&lt;BR /&gt;%x = ("SELECT", "\n", "INSERT", "\n", "UPDATE", "\n",\&lt;BR /&gt;      "WHERE", "  ", "FROM", "   ", "INTO", "   ", "AND", "    ",\&lt;BR /&gt;      "OR", "     ", "GROUP", "  ", "ORDER", "  ", "newline", "        ");&lt;BR /&gt;while (&amp;lt;&amp;gt;) {&lt;BR /&gt;    $_ = substr($_,0,64);&lt;BR /&gt;    s/\,/\, /g; #Multi-space removed later.&lt;BR /&gt;    s/\(/ \(/g;&lt;BR /&gt;    s/\)/\) /g;&lt;BR /&gt;    s/\s+/ /g;&lt;BR /&gt;    s/ ,/,/g;&lt;BR /&gt;    s/^ //;&lt;BR /&gt;    $buf .= $_;&lt;BR /&gt;    }&lt;BR /&gt;&lt;BR /&gt;    @words = split (/\s/,$buf);&lt;BR /&gt;    foreach $word (@words) {&lt;BR /&gt;      if (defined( $x{$word} )) {&lt;BR /&gt;        print "$line\n";&lt;BR /&gt;        $line = $x{$word}.$word;&lt;BR /&gt;        } else {&lt;BR /&gt;        if (length($line) &amp;gt; 57) {&lt;BR /&gt;          print "$line\n";&lt;BR /&gt;          $line = $x{"newline"}.$word;&lt;BR /&gt;          } else {&lt;BR /&gt;          $line = $line . " " . $word;&lt;BR /&gt;          }&lt;BR /&gt;        }&lt;BR /&gt;      }&lt;BR /&gt;    print "$line\n";&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;after: &lt;BR /&gt;&lt;BR /&gt;INSERT&lt;BR /&gt;   INTO tTEMPBAL0rst (NUMSEQCOG, APPLI_CPB, ACCOUNT, ALTACCT,&lt;BR /&gt;        BUSINESS_UNIT, LEDGER_GROUP, FK_PERIOD, IND_EXLCVA,&lt;BR /&gt;        CPT_NAT, JOURNAL_DATE, JRN_DATE, CODDIV, LIBDIV, CODACT,&lt;BR /&gt;        LIBACT, GOP_MNE, GOP_LIB, PTF_MNE, PTF_LIBCRT, FK_STR,&lt;BR /&gt;        CPT_PCI_S, CPT_PCI, FOREIGN_CURRENCY, IND_IAS, CDE_POS,&lt;BR /&gt;        TYPE_RESULTAT, SOLDE_DBT, SOLDE_CRD, SOLDE) (SELECT&lt;BR /&gt;        /*+ USE_NL(TMEURST) */ 40709, TM.APPLI_CBL, TM.ACCOUNT,&lt;BR /&gt;        TM.ALTACCT, TM.BUSINESS_UNIT, TM.LEDGER_GROUP, TM.FK_PERIOD,&lt;BR /&gt;        TM.IND_EXLCVA, TM.CPT_NAT, TM.JOURNAL_DATE, TM.JRN_DATE,&lt;BR /&gt;        TSTRRST.CODDIV, TSTRRST.LIBDIV, TSTRRST.CODACT, TSTRRST.LIBACT,&lt;BR /&gt;        TSTRRST.GOP_MNE, TSTRRST.GOP_LIB, TSTRRST.PTF_MNE,&lt;BR /&gt;        TSTRRST.PTF_LIBCRT, TM.FK_STR, NVL (TM.CPT_PCR, -1),&lt;BR /&gt;        TM.CPT_PCR, TM.FOREIGN_CURRENCY, TM.IND_IAS, TM.CDE_POS,&lt;BR /&gt;        kRPTUTILrst.F_GET_TYPE_RESULTAT_RST ('BAL', 'D', TO_DATE&lt;BR /&gt;        ('15/03/2004', 'DD/MM/YYYY'), TO_DATE ('31/03/2004',&lt;BR /&gt;        'DD/MM/YYYY'), TM.JRN_DATE), decode (TM.SENS_MVT, 'D',&lt;BR /&gt;        TM.MNT_TRAN, 0) SOLDE_DBT, decode (TM.SENS_MVT, 'C',&lt;BR /&gt;        TM.MNT_TRAN, 0) SOLDE_CRD, decode (TM.SENS_MVT, 'D',&lt;BR /&gt;        TM.MNT_TRAN, 0) - decode (TM.SENS_MVT, 'C', TM.MNT_TRAN,&lt;BR /&gt;        0) SOLDE&lt;BR /&gt;   FROM TSTRRST, TMEURST TM WHERE TM.FK_STR=TSTRRST.PK_STR&lt;BR /&gt;    AND TSTRRST.PTF_MNE in ('TRIND')&lt;BR /&gt;    AND TM.BUSINESS_UNIT='G0001'&lt;BR /&gt;    AND TM.LEDGER_GROUP='LEDGRP7003'&lt;BR /&gt;    AND TM.IND_IAS='N'&lt;BR /&gt;    AND TM.CDE_POS in ('N', 'S')&lt;BR /&gt;    AND JRN_DATE BETWEEN TO_DATE ('01/03/2004', 'DD/MM/YYYY')&lt;BR /&gt;    AND TO_DATE ('31/03/2004', 'DD/MM/YYYY')&lt;BR /&gt;    AND JOURNAL_DATE BETWEEN TO_DATE ('29/02/2004', 'DD/MM/YYYY')&lt;BR /&gt;    AND TO_DATE ('31/03/2004', 'DD/MM/YYYY') )&lt;BR /&gt;&lt;BR /&gt;before:&lt;BR /&gt;&lt;BR /&gt;INSERT INTO tTEMPBAL0rst (NUMSEQCOG,APPLI_CPB,ACCOUNT,ALTACCT,BU&lt;BR /&gt;SINESS_UNIT,LEDGER_GROUP,FK_PERIOD,IND_EXLCVA,CPT_NAT,JOURNAL_DA&lt;BR /&gt;TE,JRN_DATE,CODDIV,LIBDIV,CODACT,LIBACT,GOP_MNE,GOP_LIB,PTF_MNE,&lt;BR /&gt;PTF_LIBCRT,FK_STR,CPT_PCI_S,CPT_PCI,FOREIGN_CURRENCY,IND_IAS,CDE&lt;BR /&gt;_POS,TYPE_RESULTAT,SOLDE_DBT,SOLDE_CRD,SOLDE) (SELECT /*+ USE_NL&lt;BR /&gt;(TMEURST) */ 40709, TM.APPLI_CBL, TM.ACCOUNT, TM.ALTACCT, TM.BUS&lt;BR /&gt;INESS_UNIT, TM.LEDGER_GROUP, TM.FK_PERIOD, TM.IND_EXLCVA, TM.CPT&lt;BR /&gt;_NAT, TM.JOURNAL_DATE, TM.JRN_DATE, TSTRRST.CODDIV, TSTRRST.LIBD&lt;BR /&gt;IV, TSTRRST.CODACT, TSTRRST.LIBACT, TSTRRST.GOP_MNE, TSTRRST.GOP&lt;BR /&gt;_LIB, TSTRRST.PTF_MNE, TSTRRST.PTF_LIBCRT, TM.FK_STR, NVL(TM.CPT&lt;BR /&gt;_PCR,-1), TM.CPT_PCR, TM.FOREIGN_CURRENCY , TM.IND_IAS , TM.CDE_&lt;BR /&gt;POS , kRPTUTILrst.F_GET_TYPE_RESULTAT_RST('BAL', 'D', TO_DATE('1&lt;BR /&gt;5/03/2004','DD/MM/YYYY'), TO_DATE('31/03/2004','DD/MM/YYYY'), TM&lt;BR /&gt;.JRN_DATE), decode(TM.SENS_MVT,'D',TM.MNT_TRAN ,0) SOLDE_DBT, de&lt;BR /&gt;code(TM.SENS_MVT,'C',TM.MNT_TRAN ,0) SOLDE_CRD, decode(TM.SENS_M&lt;BR /&gt;VT,'D',TM.MNT_TRAN ,0) - decode(TM.SENS_MVT,'C',TM.MNT_TRAN ,0)&lt;BR /&gt;SOLDE FROM TSTRRST, TMEURST TM WHERE TM.FK_STR=TSTRRST.PK_STR AN&lt;BR /&gt;D TSTRRST.PTF_MNE in ('TRIND') AND TM.BUSINESS_UNIT='G0001' AND&lt;BR /&gt;TM.LEDGER_GROUP='LEDGRP7003' AND TM.IND_IAS='N' AND  TM.CDE_POS&lt;BR /&gt;in ('N','S') AND  JRN_DATE BETWEEN TO_DATE('01/03/2004','DD/MM/Y&lt;BR /&gt;YYY') AND TO_DATE('31/03/2004','DD/MM/YYYY') AND  JOURNAL_DATE B&lt;BR /&gt;ETWEEN TO_DATE('29/02/2004','DD/MM/YYYY') AND TO_DATE('31/03/200&lt;BR /&gt;4','DD/MM/YYYY') )&lt;BR /&gt;</description>
      <pubDate>Thu, 08 Apr 2004 12:27:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/formatting-v-sqltext-sql-text/m-p/3243363#M891581</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2004-04-08T12:27:58Z</dc:date>
    </item>
    <item>
      <title>Re: Formatting v$sqltext.SQL_TEXT</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/formatting-v-sqltext-sql-text/m-p/3243364#M891582</link>
      <description>Hein,&lt;BR /&gt;&lt;BR /&gt;Thanks for the timle you took to improve you perl script.&lt;BR /&gt;It's a nice output indeed !&lt;BR /&gt;&lt;BR /&gt;Fort the 3 pts, there was no special thinking on it, I felt the correction was at leat worth some points.&lt;BR /&gt;&lt;BR /&gt;The 10 pts you get now are well deserved !&lt;BR /&gt;&lt;BR /&gt;Cheers&lt;BR /&gt;&lt;BR /&gt;Nicolas&lt;BR /&gt;</description>
      <pubDate>Fri, 09 Apr 2004 04:31:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/formatting-v-sqltext-sql-text/m-p/3243364#M891582</guid>
      <dc:creator>Nicolas Dumeige</dc:creator>
      <dc:date>2004-04-09T04:31:51Z</dc:date>
    </item>
    <item>
      <title>Re: Formatting v$sqltext.SQL_TEXT</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/formatting-v-sqltext-sql-text/m-p/3243365#M891583</link>
      <description>Hi Nicolas,&lt;BR /&gt;&lt;BR /&gt;perhaps you overlooked a small detail.&lt;BR /&gt;A ten is made of a 1 and a 0 and not only of&lt;BR /&gt;a 0!&lt;BR /&gt;You have given Hein 0 points for the last post!&lt;BR /&gt;&lt;BR /&gt;greetings,&lt;BR /&gt;&lt;BR /&gt;Michael&lt;BR /&gt;</description>
      <pubDate>Fri, 09 Apr 2004 06:15:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/formatting-v-sqltext-sql-text/m-p/3243365#M891583</guid>
      <dc:creator>Michael Schulte zur Sur</dc:creator>
      <dc:date>2004-04-09T06:15:50Z</dc:date>
    </item>
    <item>
      <title>Re: Formatting v$sqltext.SQL_TEXT</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/formatting-v-sqltext-sql-text/m-p/3243366#M891584</link>
      <description>Hi Nicolas,&lt;BR /&gt;&lt;BR /&gt;perhaps you overlooked a small detail.&lt;BR /&gt;A ten is made of a 1 and a 0 and not only of&lt;BR /&gt;a 0! ;-)&lt;BR /&gt;You have given Hein 0 points for the last post!&lt;BR /&gt;&lt;BR /&gt;greetings,&lt;BR /&gt;&lt;BR /&gt;Michael&lt;BR /&gt;</description>
      <pubDate>Fri, 09 Apr 2004 06:16:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/formatting-v-sqltext-sql-text/m-p/3243366#M891584</guid>
      <dc:creator>Michael Schulte zur Sur</dc:creator>
      <dc:date>2004-04-09T06:16:01Z</dc:date>
    </item>
    <item>
      <title>Re: Formatting v$sqltext.SQL_TEXT</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/formatting-v-sqltext-sql-text/m-p/3243367#M891585</link>
      <description>Oops ! My wheelmouse has scroll both the frame and the point combo box.&lt;BR /&gt;&lt;BR /&gt;Hein, all appologies.&lt;BR /&gt;Please say hello to get your 10 pts.&lt;BR /&gt;&lt;BR /&gt;Nicolas</description>
      <pubDate>Fri, 09 Apr 2004 07:00:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/formatting-v-sqltext-sql-text/m-p/3243367#M891585</guid>
      <dc:creator>Nicolas Dumeige</dc:creator>
      <dc:date>2004-04-09T07:00:02Z</dc:date>
    </item>
    <item>
      <title>Re: Formatting v$sqltext.SQL_TEXT</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/formatting-v-sqltext-sql-text/m-p/3243368#M891586</link>
      <description>Hein, are you there ?</description>
      <pubDate>Tue, 13 Apr 2004 03:21:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/formatting-v-sqltext-sql-text/m-p/3243368#M891586</guid>
      <dc:creator>Nicolas Dumeige</dc:creator>
      <dc:date>2004-04-13T03:21:20Z</dc:date>
    </item>
    <item>
      <title>Re: Formatting v$sqltext.SQL_TEXT</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/formatting-v-sqltext-sql-text/m-p/3243369#M891587</link>
      <description>ack&lt;BR /&gt;&lt;BR /&gt;Hein.&lt;BR /&gt;(hein at hp dot com)</description>
      <pubDate>Tue, 13 Apr 2004 16:18:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/formatting-v-sqltext-sql-text/m-p/3243369#M891587</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2004-04-13T16:18:08Z</dc:date>
    </item>
    <item>
      <title>Re: Formatting v$sqltext.SQL_TEXT</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/formatting-v-sqltext-sql-text/m-p/3243370#M891588</link>
      <description>Hein, &lt;BR /&gt;&lt;BR /&gt;I like you personal quote. &lt;BR /&gt;Can I say the script is not flawles but keep my own shoes ?&lt;BR /&gt;&lt;BR /&gt;Cheers &lt;BR /&gt;&lt;BR /&gt;Nicolas&lt;BR /&gt;</description>
      <pubDate>Wed, 14 Apr 2004 04:10:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/formatting-v-sqltext-sql-text/m-p/3243370#M891588</guid>
      <dc:creator>Nicolas Dumeige</dc:creator>
      <dc:date>2004-04-14T04:10:36Z</dc:date>
    </item>
  </channel>
</rss>

