<?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: Unix script to read from oracle table in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-script-to-read-from-oracle-table/m-p/5069635#M735401</link>
    <description>Thanks for all the help</description>
    <pubDate>Mon, 24 Sep 2007 08:33:10 GMT</pubDate>
    <dc:creator>Jesse Delk</dc:creator>
    <dc:date>2007-09-24T08:33:10Z</dc:date>
    <item>
      <title>Unix script to read from oracle table</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-script-to-read-from-oracle-table/m-p/5069618#M735384</link>
      <description>Can I get a little (or alot) help with a unix script?&lt;BR /&gt;&lt;BR /&gt;I need a script to read a column from an oracle table and then email it from unix.&lt;BR /&gt;&lt;BR /&gt;such as &lt;BR /&gt;&lt;BR /&gt;sqlplus username/password@sid&lt;BR /&gt;select columnname from table where rownum &amp;lt;2;  **pulling first row only**&lt;BR /&gt;host mailx -s Batch "columnname" user@somewhere.com&lt;BR /&gt;delete from table where columnname = 'columnname';&lt;BR /&gt;&lt;BR /&gt;Would like it not to send mail if the table is empty.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 19 Sep 2007 08:05:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unix-script-to-read-from-oracle-table/m-p/5069618#M735384</guid>
      <dc:creator>Jesse Delk</dc:creator>
      <dc:date>2007-09-19T08:05:56Z</dc:date>
    </item>
    <item>
      <title>Re: Unix script to read from oracle table</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-script-to-read-from-oracle-table/m-p/5069619#M735385</link>
      <description>Hey&lt;BR /&gt;&lt;BR /&gt;You could write a sendmail procedure in pl/sql and do the whole thing in pl/sql. you will find a lot of example with google about sendmail procedures...&lt;BR /&gt;&lt;BR /&gt;Regards</description>
      <pubDate>Wed, 19 Sep 2007 08:18:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unix-script-to-read-from-oracle-table/m-p/5069619#M735385</guid>
      <dc:creator>Oviwan</dc:creator>
      <dc:date>2007-09-19T08:18:18Z</dc:date>
    </item>
    <item>
      <title>Re: Unix script to read from oracle table</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-script-to-read-from-oracle-table/m-p/5069620#M735386</link>
      <description>hi Jesse,&lt;BR /&gt;&lt;BR /&gt;Method1:&lt;BR /&gt;========&lt;BR /&gt;Create a shell script as follows:&lt;BR /&gt;#!/bin/ksh&lt;BR /&gt;export ORACLE_HOME=&lt;YOUR path="" to="" oracle="" home=""&gt;&lt;BR /&gt;export PATH=$PATH:$ORACLE_HOME/bin&lt;BR /&gt;export emailadd1=user@somewhere.com&lt;BR /&gt;#&lt;BR /&gt;sqlplus /nolog &amp;lt;&amp;lt; EOF&lt;BR /&gt;connect username/password@sid&lt;BR /&gt;set echo off;&lt;BR /&gt;set termout on;&lt;BR /&gt;set linesize 100;&lt;BR /&gt;set pagesize 60;&lt;BR /&gt;set newpage 0;&lt;BR /&gt;set heading off;&lt;BR /&gt;set feedback off;&lt;BR /&gt;spool /tmp/output.lis;&lt;BR /&gt;select columnname from table where rownum &amp;lt;2;&lt;BR /&gt;spool off;&lt;BR /&gt;EOF&lt;BR /&gt;/usr/bin/uuencode /tmp/output.lis "FileYouNeed.txt"|mailx -m -s "Subject" $emailadd1&lt;BR /&gt;#End-of-Script&lt;BR /&gt;&lt;BR /&gt;Method2: (oracle 10g)&lt;BR /&gt;========&lt;BR /&gt;Create a procedure/package to do the same:&lt;BR /&gt;create or replace procedure readtab as&lt;BR /&gt; mcolumname table%type;&lt;BR /&gt;BEGIN&lt;BR /&gt; begin&lt;BR /&gt;  select  columnname &lt;BR /&gt;  into    :mcolumname&lt;BR /&gt;  from table where rownum &amp;lt;2;&lt;BR /&gt;  begin&lt;BR /&gt;   UTL_MAIL.send(&lt;BR /&gt;    sender     =&amp;gt; 'me@domain.com',&lt;BR /&gt;    recipients =&amp;gt; 'user@somewhere.com',&lt;BR /&gt;    cc         =&amp;gt; 'user@somewhere.com',&lt;BR /&gt;    bcc        =&amp;gt; 'boss@somewhere.com',&lt;BR /&gt;    subject    =&amp;gt; 'Subject',&lt;BR /&gt;    message    =&amp;gt; 'This is the value of columnname:'||:mcolumnname);&lt;BR /&gt;  end;&lt;BR /&gt;  exception&lt;BR /&gt;   when no_data_found then&lt;BR /&gt;    null;&lt;BR /&gt; end;&lt;BR /&gt;END;&lt;BR /&gt;&lt;BR /&gt;NB. Method 2 is more efficient and will NOT send the mail if the table is empty... If you choose method 1, you should add additional logic to the code so that it detects that no records exist in the table.&lt;BR /&gt;&lt;BR /&gt;hope this helps!&lt;BR /&gt;kind regards&lt;BR /&gt;yogeeraj&lt;/YOUR&gt;</description>
      <pubDate>Thu, 20 Sep 2007 00:52:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unix-script-to-read-from-oracle-table/m-p/5069620#M735386</guid>
      <dc:creator>Yogeeraj_1</dc:creator>
      <dc:date>2007-09-20T00:52:06Z</dc:date>
    </item>
    <item>
      <title>Re: Unix script to read from oracle table</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-script-to-read-from-oracle-table/m-p/5069621#M735387</link>
      <description>Alot of info I left out.&lt;BR /&gt;&lt;BR /&gt;Running Oracle 8i. Unable to get utl_mail to work due to low memory issues. HP-Ux 11i.&lt;BR /&gt;&lt;BR /&gt;This is what I have come up with so far but seems ugly...hoping someone has something better.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;$  cat batch.sh&lt;BR /&gt;&lt;BR /&gt;#!/usr/bin/ksh&lt;BR /&gt;export VAR=0&lt;BR /&gt;export VAR=`$ORACLE_HOME/bin/sqlplus -s user/password@sid&amp;lt;&lt;EOF&gt;&lt;/EOF&gt;whenever sqlerror exit 1&lt;BR /&gt;set escape off&lt;BR /&gt;set head off&lt;BR /&gt;set verify off&lt;BR /&gt;select batch from ashdrum where rownum &amp;lt; 2;&lt;BR /&gt;EOF&lt;BR /&gt;`&lt;BR /&gt;if [ $VAR -gt 0 ]; then&lt;BR /&gt;mailx -s "Batch $VAR" user@somewhere.com &lt;TEST.TXT&gt;&lt;/TEST.TXT&gt;sqlplus user/password@sid @batch.sql;&lt;BR /&gt;else&lt;BR /&gt;exit&lt;BR /&gt;fi&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;$  cat batch.sql&lt;BR /&gt;declare&lt;BR /&gt;var number;&lt;BR /&gt;Begin&lt;BR /&gt;select batch into var from ashdrum where rownum &amp;lt; 2;&lt;BR /&gt;delete from ashdrum where batch = var;&lt;BR /&gt;end;&lt;BR /&gt;/&lt;BR /&gt;commit;&lt;BR /&gt;exit;&lt;BR /&gt;</description>
      <pubDate>Thu, 20 Sep 2007 06:34:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unix-script-to-read-from-oracle-table/m-p/5069621#M735387</guid>
      <dc:creator>Jesse Delk</dc:creator>
      <dc:date>2007-09-20T06:34:33Z</dc:date>
    </item>
    <item>
      <title>Re: Unix script to read from oracle table</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-script-to-read-from-oracle-table/m-p/5069622#M735388</link>
      <description>&lt;!--!*#--&gt;I would be careful about separating the emailed select from the select / delete. There is no guarantee that Oracle will return the same top result each time, and thus no guarantee that you are deleting the same row that was emailed.&lt;BR /&gt;&lt;BR /&gt;Also, I assume that you have a unique index on columnname, or you could possibly delete more than one row.&lt;BR /&gt;&lt;BR /&gt;Here is a modified version of your script:&lt;BR /&gt;#!/usr/bin/ksh&lt;BR /&gt;export VAR=0&lt;BR /&gt;&lt;BR /&gt;echo $($ORACLE_HOME/bin/sqlplus -s /nolog &amp;lt;&lt;EOF&gt;&lt;/EOF&gt;conn user/pass&lt;BR /&gt;whenever sqlerror exit 1&lt;BR /&gt;set escape off&lt;BR /&gt;set head off&lt;BR /&gt;set verify off&lt;BR /&gt;set termout off&lt;BR /&gt;set serveroutput on&lt;BR /&gt;declare var number;&lt;BR /&gt;  begin&lt;BR /&gt;  select column into var from table where rownum &amp;lt; 2;&lt;BR /&gt;  dbms_output.put_line (var);&lt;BR /&gt;  delete from table where column = var;&lt;BR /&gt;  end;&lt;BR /&gt;/&lt;BR /&gt;quit;&lt;BR /&gt;EOF&lt;BR /&gt;) | read blah VAR blah&lt;BR /&gt;&lt;BR /&gt;if [ -n $VAR ]; then&lt;BR /&gt; mailx -s "$VAR has been deleted" user@email.com&lt;BR /&gt;else&lt;BR /&gt; exit 1&lt;BR /&gt;fi&lt;BR /&gt;</description>
      <pubDate>Thu, 20 Sep 2007 08:07:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unix-script-to-read-from-oracle-table/m-p/5069622#M735388</guid>
      <dc:creator>Jonathan Fife</dc:creator>
      <dc:date>2007-09-20T08:07:03Z</dc:date>
    </item>
    <item>
      <title>Re: Unix script to read from oracle table</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-script-to-read-from-oracle-table/m-p/5069623#M735389</link>
      <description>Fife,&lt;BR /&gt;&lt;BR /&gt;The only thing is that I need the Unix variable $VAR set to the item being deleted. Unix $VAR=oracle var. The oracle piece you sent within the unix script is working fine.&lt;BR /&gt;&lt;BR /&gt;This way in my email I can say  Batch 12345(the $VAR) has been deleted.&lt;BR /&gt;&lt;BR /&gt;Right now when I run the code it brings me back diferent things for $VAR like 'declare','PLSQL', or just var.&lt;BR /&gt;&lt;BR /&gt;Thanks for all the help.</description>
      <pubDate>Thu, 20 Sep 2007 08:58:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unix-script-to-read-from-oracle-table/m-p/5069623#M735389</guid>
      <dc:creator>Jesse Delk</dc:creator>
      <dc:date>2007-09-20T08:58:59Z</dc:date>
    </item>
    <item>
      <title>Re: Unix script to read from oracle table</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-script-to-read-from-oracle-table/m-p/5069624#M735390</link>
      <description>Just realized that my script above would send something regardless of whether the table was empty, so here is one that works:&lt;BR /&gt;&lt;BR /&gt;$cat batch.ksh&lt;BR /&gt;#!/usr/bin/ksh&lt;BR /&gt;VAR='NO_RESULTS'&lt;BR /&gt;export ORACLE_SID=test&lt;BR /&gt;&lt;BR /&gt;echo $($ORACLE_HOME/bin/sqlplus -s /nolog &amp;lt;&amp;lt;^D&lt;BR /&gt;@batch.sql&lt;BR /&gt;^D&lt;BR /&gt;) | read blah VAR blah&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;if [ $VAR != 'NO_RESULTS' ]; then&lt;BR /&gt; echo $VAR&lt;BR /&gt;else&lt;BR /&gt; exit 1&lt;BR /&gt;fi&lt;BR /&gt;&lt;BR /&gt;$cat batch.sql&lt;BR /&gt;conn / as sysdba&lt;BR /&gt;set escape off&lt;BR /&gt;set head off&lt;BR /&gt;set verify off&lt;BR /&gt;set serveroutput on&lt;BR /&gt;declare var number;&lt;BR /&gt;begin&lt;BR /&gt;  select column into var from table where rownum &amp;lt; 2;&lt;BR /&gt;  delete from table where column = var;&lt;BR /&gt;  dbms_output.put_line(var);&lt;BR /&gt;  EXCEPTION&lt;BR /&gt;    WHEN OTHERS THEN&lt;BR /&gt;    IF SQL%NOTFOUND THEN  -- check for 'no data found'&lt;BR /&gt;      var := 'NO_RESULTS';&lt;BR /&gt;      dbms_output.put_line(var);&lt;BR /&gt;    END IF;&lt;BR /&gt;end;&lt;BR /&gt;/&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 20 Sep 2007 09:08:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unix-script-to-read-from-oracle-table/m-p/5069624#M735390</guid>
      <dc:creator>Jonathan Fife</dc:creator>
      <dc:date>2007-09-20T09:08:39Z</dc:date>
    </item>
    <item>
      <title>Re: Unix script to read from oracle table</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-script-to-read-from-oracle-table/m-p/5069625#M735391</link>
      <description>&lt;!--!*#--&gt;Just realized that my script above would send something regardless of whether the table was empty, so here is one that works:&lt;BR /&gt;&lt;BR /&gt;$cat batch.ksh&lt;BR /&gt;#!/usr/bin/ksh&lt;BR /&gt;VAR='NO_RESULTS'&lt;BR /&gt;export ORACLE_SID=test&lt;BR /&gt;&lt;BR /&gt;echo $($ORACLE_HOME/bin/sqlplus -s /nolog &amp;lt;&amp;lt;^D&lt;BR /&gt;@batch.sql&lt;BR /&gt;^D&lt;BR /&gt;) | read blah VAR blah&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;if [ $VAR != 'NO_RESULTS' ]; then&lt;BR /&gt; echo $VAR&lt;BR /&gt;else&lt;BR /&gt; exit 1&lt;BR /&gt;fi&lt;BR /&gt;&lt;BR /&gt;$cat batch.sql&lt;BR /&gt;conn / as sysdba&lt;BR /&gt;set escape off&lt;BR /&gt;set head off&lt;BR /&gt;set verify off&lt;BR /&gt;set serveroutput on&lt;BR /&gt;declare var number;&lt;BR /&gt;begin&lt;BR /&gt;  select column into var from table where rownum &amp;lt; 2;&lt;BR /&gt;  delete from table where column = var;&lt;BR /&gt;  dbms_output.put_line(var);&lt;BR /&gt;  EXCEPTION&lt;BR /&gt;    WHEN OTHERS THEN&lt;BR /&gt;    IF SQL%NOTFOUND THEN  -- check for 'no data found'&lt;BR /&gt;      var := 'NO_RESULTS';&lt;BR /&gt;      dbms_output.put_line(var);&lt;BR /&gt;    END IF;&lt;BR /&gt;end;&lt;BR /&gt;/&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 20 Sep 2007 09:09:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unix-script-to-read-from-oracle-table/m-p/5069625#M735391</guid>
      <dc:creator>Jonathan Fife</dc:creator>
      <dc:date>2007-09-20T09:09:35Z</dc:date>
    </item>
    <item>
      <title>Re: Unix script to read from oracle table</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-script-to-read-from-oracle-table/m-p/5069626#M735392</link>
      <description>Fife,&lt;BR /&gt;&lt;BR /&gt;Using your latest one, it gives me  PL/SQL for the unix $VAR. Trying to find if I'm getting an error and its putting that into the $VAR.</description>
      <pubDate>Thu, 20 Sep 2007 11:32:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unix-script-to-read-from-oracle-table/m-p/5069626#M735392</guid>
      <dc:creator>Jesse Delk</dc:creator>
      <dc:date>2007-09-20T11:32:35Z</dc:date>
    </item>
    <item>
      <title>Re: Unix script to read from oracle table</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-script-to-read-from-oracle-table/m-p/5069627#M735393</link>
      <description>To troubleshoot just comment out the &lt;BR /&gt;"| read blah VAR blah"&lt;BR /&gt;&lt;BR /&gt;The first word of output should go to the blah variable, the second to VAR (so the second word is what's important), and the rest to blah.</description>
      <pubDate>Thu, 20 Sep 2007 12:02:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unix-script-to-read-from-oracle-table/m-p/5069627#M735393</guid>
      <dc:creator>Jonathan Fife</dc:creator>
      <dc:date>2007-09-20T12:02:35Z</dc:date>
    </item>
    <item>
      <title>Re: Unix script to read from oracle table</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-script-to-read-from-oracle-table/m-p/5069628#M735394</link>
      <description>I think I get the blah thing now. Instead of read blah VAR blah....I needed "read VAR blah blah".....  It seems as my batch number is the first num/word.&lt;BR /&gt;</description>
      <pubDate>Thu, 20 Sep 2007 13:00:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unix-script-to-read-from-oracle-table/m-p/5069628#M735394</guid>
      <dc:creator>Jesse Delk</dc:creator>
      <dc:date>2007-09-20T13:00:36Z</dc:date>
    </item>
    <item>
      <title>Re: Unix script to read from oracle table</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-script-to-read-from-oracle-table/m-p/5069629#M735395</link>
      <description>OK,&lt;BR /&gt;on this line &lt;BR /&gt;&lt;BR /&gt;) | read blah VAR blah&lt;BR /&gt;&lt;BR /&gt;I changed to   ) | read VAR blah blah&lt;BR /&gt;&lt;BR /&gt;It started picking up the right number. The problem now is that when the table is empty..I get a memoryfault error in unix. Any last changes to clean this up?&lt;BR /&gt;</description>
      <pubDate>Thu, 20 Sep 2007 13:24:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unix-script-to-read-from-oracle-table/m-p/5069629#M735395</guid>
      <dc:creator>Jesse Delk</dc:creator>
      <dc:date>2007-09-20T13:24:29Z</dc:date>
    </item>
    <item>
      <title>Re: Unix script to read from oracle table</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-script-to-read-from-oracle-table/m-p/5069630#M735396</link>
      <description>Actually........I changed the line back to &lt;BR /&gt;) | read blah VAR blah&lt;BR /&gt;&lt;BR /&gt;and I still get the memory fault core error when the table is empty.&lt;BR /&gt;</description>
      <pubDate>Thu, 20 Sep 2007 13:37:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unix-script-to-read-from-oracle-table/m-p/5069630#M735396</guid>
      <dc:creator>Jesse Delk</dc:creator>
      <dc:date>2007-09-20T13:37:01Z</dc:date>
    </item>
    <item>
      <title>Re: Unix script to read from oracle table</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-script-to-read-from-oracle-table/m-p/5069631#M735397</link>
      <description>Hmmm, that is odd. I tested my script on 9.2.0.8, so that might be a difference between our versions.&lt;BR /&gt;&lt;BR /&gt;Can you run just the sqlplus command, and if so does it crash, or is it something else crashing?</description>
      <pubDate>Thu, 20 Sep 2007 13:39:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unix-script-to-read-from-oracle-table/m-p/5069631#M735397</guid>
      <dc:creator>Jonathan Fife</dc:creator>
      <dc:date>2007-09-20T13:39:11Z</dc:date>
    </item>
    <item>
      <title>Re: Unix script to read from oracle table</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-script-to-read-from-oracle-table/m-p/5069632#M735398</link>
      <description>running just the sql I get this error&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;set feedback off&lt;BR /&gt;set escape off&lt;BR /&gt;set head off&lt;BR /&gt;set verify off&lt;BR /&gt;set serveroutput on&lt;BR /&gt;declare var number;&lt;BR /&gt;begin&lt;BR /&gt;  select batch into var from ashdrum where rownum &amp;lt; 2;&lt;BR /&gt;  delete from ashdrum where batch = var;&lt;BR /&gt;  dbms_output.put_line(var);&lt;BR /&gt;  EXCEPTION&lt;BR /&gt;    WHEN OTHERS THEN&lt;BR /&gt;    IF SQL%NOTFOUND THEN  -- check for 'no data found'&lt;BR /&gt;      var := 'NO_RESULTS';&lt;BR /&gt;      dbms_output.put_line(var);&lt;BR /&gt;    END IF;&lt;BR /&gt;end;&lt;BR /&gt;/&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;ERROR at line 1:&lt;BR /&gt;ORA-06502: PL/SQL: numeric or value error: character to number conversion error&lt;BR /&gt;ORA-06512: at line 9&lt;BR /&gt;ORA-01403: no data found</description>
      <pubDate>Thu, 20 Sep 2007 13:44:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unix-script-to-read-from-oracle-table/m-p/5069632#M735398</guid>
      <dc:creator>Jesse Delk</dc:creator>
      <dc:date>2007-09-20T13:44:49Z</dc:date>
    </item>
    <item>
      <title>Re: Unix script to read from oracle table</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-script-to-read-from-oracle-table/m-p/5069633#M735399</link>
      <description>Oh, try declaring var as a char(20). I was setting it to 'NO_RESULT', which isn't a numeric :)</description>
      <pubDate>Thu, 20 Sep 2007 14:28:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unix-script-to-read-from-oracle-table/m-p/5069633#M735399</guid>
      <dc:creator>Jonathan Fife</dc:creator>
      <dc:date>2007-09-20T14:28:59Z</dc:date>
    </item>
    <item>
      <title>Re: Unix script to read from oracle table</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-script-to-read-from-oracle-table/m-p/5069634#M735400</link>
      <description>Got it.  I believe I'm golden now. Everything looks good. Table empty or not.&lt;BR /&gt;&lt;BR /&gt;Thanks for all the help.</description>
      <pubDate>Thu, 20 Sep 2007 14:46:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unix-script-to-read-from-oracle-table/m-p/5069634#M735400</guid>
      <dc:creator>Jesse Delk</dc:creator>
      <dc:date>2007-09-20T14:46:33Z</dc:date>
    </item>
    <item>
      <title>Re: Unix script to read from oracle table</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/unix-script-to-read-from-oracle-table/m-p/5069635#M735401</link>
      <description>Thanks for all the help</description>
      <pubDate>Mon, 24 Sep 2007 08:33:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/unix-script-to-read-from-oracle-table/m-p/5069635#M735401</guid>
      <dc:creator>Jesse Delk</dc:creator>
      <dc:date>2007-09-24T08:33:10Z</dc:date>
    </item>
  </channel>
</rss>

