<?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: HP UX  - PERL 5.8.8 DBD :: Oracle problem in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-perl-5-8-8-dbd-oracle-problem/m-p/5130123#M449596</link>
    <description>I would like to hope so, but there is not a single database that doesn't cause people to swear and curse.&lt;BR /&gt;&lt;BR /&gt;It just happens that Oracle manages to make me curse way more than Postgres or Unify.&lt;BR /&gt;&lt;BR /&gt;OK, I'll just use CSV then :)&lt;BR /&gt;&lt;BR /&gt;Enjoy, Have FUN! H.Merijn</description>
    <pubDate>Thu, 18 Sep 2008 13:05:37 GMT</pubDate>
    <dc:creator>H.Merijn Brand (procura</dc:creator>
    <dc:date>2008-09-18T13:05:37Z</dc:date>
    <item>
      <title>HP UX  - PERL 5.8.8 DBD :: Oracle problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-perl-5-8-8-dbd-oracle-problem/m-p/5130116#M449589</link>
      <description>Hi there, &lt;BR /&gt;My problem is i am executing perl script from command prompt to query the Oracle database.  It works fine from command prompt. &lt;BR /&gt;&lt;BR /&gt;But if i try to execuite the script by placing it in Apache and calling it through browser it does not execute and gives out following error in error_log &lt;BR /&gt;&lt;BR /&gt;install_driver(Oracle) failed: Can't load '/opt/perl5/lib/site_perl/5.8.8/PA-RISC2.0-thread-multi-LP64/auto/DBD/Oracle/Oracle.sl' for module DBD::Oracle: No such file or directory at /opt/perl5/lib/5.8.8/PA-RISC2.0-thread-multi-LP64/DynaLoader.pm line 230.&lt;BR /&gt;at (eval 3) line 3&lt;BR /&gt;Compilation failed in require at (eval 3) line 3.&lt;BR /&gt;Perhaps a required shared library or dll isn't installed where expected&lt;BR /&gt;at /opt/hpws/apacheNew/cgi-bin/TestDB.pl line 5&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&lt;BR /&gt;&lt;BR /&gt;os : HP-UX srvhp4 B.11.23 U 9000/800&lt;BR /&gt;perl 5.8.8 (with threading)&lt;BR /&gt;DBI : 1.607&lt;BR /&gt;DBD:Oracle - 1.14&lt;BR /&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;BR /&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;TestDB.pl&lt;BR /&gt;#!/opt/perl5/bin/perl&lt;BR /&gt;use DBI;&lt;BR /&gt;use CGI;&lt;BR /&gt;&lt;BR /&gt;my $dbh = DBI-&amp;gt;connect('dbi:Oracle:', q{websmgr/websmgr@(DESCRIPTION=&lt;BR /&gt;(ADDRESS=(PROTOCOL=TCP) (HOST=172.18.1.224)(PORT=1521))&lt;BR /&gt;(CONNECT_DATA=(SID=WEBS)))}, "") || die "Database connection not made: $DBI::errstr";&lt;BR /&gt;&lt;BR /&gt;my $sql = qq{ select * from EF_DJS_CIRCUIT_ATTENDEES };&lt;BR /&gt;my $sth = $dbh-&amp;gt;prepare( $sql );&lt;BR /&gt;$sth-&amp;gt;execute();&lt;BR /&gt;while (@data = $sth-&amp;gt;fetchrow_array()) {&lt;BR /&gt;          print"DATA is = "."$data[0]"."\n";&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;$dbh-&amp;gt;disconnect();&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 16 Sep 2008 19:44:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-perl-5-8-8-dbd-oracle-problem/m-p/5130116#M449589</guid>
      <dc:creator>jygnash</dc:creator>
      <dc:date>2008-09-16T19:44:06Z</dc:date>
    </item>
    <item>
      <title>Re: HP UX  - PERL 5.8.8 DBD :: Oracle problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-perl-5-8-8-dbd-oracle-problem/m-p/5130117#M449590</link>
      <description>Need the same environmant vars that you have in your shell to be in apache.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 16 Sep 2008 19:47:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-perl-5-8-8-dbd-oracle-problem/m-p/5130117#M449590</guid>
      <dc:creator>Tim Nelson</dc:creator>
      <dc:date>2008-09-16T19:47:10Z</dc:date>
    </item>
    <item>
      <title>Re: HP UX  - PERL 5.8.8 DBD :: Oracle problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-perl-5-8-8-dbd-oracle-problem/m-p/5130118#M449591</link>
      <description>Its shows the same error again... even after &lt;BR /&gt;I did exporting the env variable through profile. or even set that variables in httpd.conf  as below &lt;BR /&gt;&lt;BR /&gt;SetEnv ORACLE_HOME /orasw/oracle/product/db10g&lt;BR /&gt;PassEnv ORACLE_HOME&lt;BR /&gt;&lt;BR /&gt;SetEnv LD_LIBRARY_PATH /orasw/oracle/product/db10g/lib64&lt;BR /&gt;PassEnv LD_LIBRARY_PATH&lt;BR /&gt;&lt;BR /&gt;SetEnv LD_RUN_PATH /orasw/oracle/product/db10g/lib64:/orasw/oracle/product/db10g/lib&lt;BR /&gt;PassEnv LD_RUN_PATH&lt;BR /&gt;&lt;BR /&gt;SetEnv SHLIB_PATH /orasw/oracle/product/db10g:/orasw/oracle/product/db10g/lib&lt;BR /&gt;PassEnv SHLIB_PATH&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;SetEnv PATH /opt/perl5/bin:/opt/perl5/lib/site_perl/5.8.8/PA-RISC2.0-thread-multi-LP64/auto/DBD/Oracle:/opt/perl5/lib/site_perl/5.8.8/PA-RISC2.0-thread-multi-LP64:/orasw/oracle/product/db10g/lib64:/orasw/oracle/product/db10g/lib&lt;BR /&gt;PassEnv PATH&lt;BR /&gt;&lt;BR /&gt;SetEnv LD_PRELOAD /opt/perl5/bin:/opt/perl5/lib/site_perl/5.8.8/PA-RISC2.0-thread-multi-LP64/auto/DBD/Oracle:/opt/perl5/lib/site_perl/5.8.8/PA-RISC2.0-thread-multi-LP64/:/orasw/oracle/product/db10g/lib64:/orasw/oracle/product/db10g/lib&lt;BR /&gt;PassEnv LD_PRELOAD&lt;BR /&gt;&lt;BR /&gt;also exported them manually, but still no result.  Its shows the same error again</description>
      <pubDate>Wed, 17 Sep 2008 18:16:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-perl-5-8-8-dbd-oracle-problem/m-p/5130118#M449591</guid>
      <dc:creator>jygnash</dc:creator>
      <dc:date>2008-09-17T18:16:03Z</dc:date>
    </item>
    <item>
      <title>Re: HP UX  - PERL 5.8.8 DBD :: Oracle problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-perl-5-8-8-dbd-oracle-problem/m-p/5130119#M449592</link>
      <description>I do not think your web page is going to read a specific users profile.&lt;BR /&gt;&lt;BR /&gt;How about setting the env in the perl script ?&lt;BR /&gt;&lt;BR /&gt;e.g.&lt;BR /&gt;&lt;BR /&gt;$ENV{ORACLE_HOME} = '/u01/oracle/product/10.2';&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 17 Sep 2008 18:24:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-perl-5-8-8-dbd-oracle-problem/m-p/5130119#M449592</guid>
      <dc:creator>Tim Nelson</dc:creator>
      <dc:date>2008-09-17T18:24:02Z</dc:date>
    </item>
    <item>
      <title>Re: HP UX  - PERL 5.8.8 DBD :: Oracle problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-perl-5-8-8-dbd-oracle-problem/m-p/5130120#M449593</link>
      <description>still failing i edited the perl script to have the following variables&lt;BR /&gt;$ENV{ORACLE_HOME} = '/orasw/oracle/product/db10g';&lt;BR /&gt;$ENV{SHLIB_PATH}='/orasw/oracle/product/db10g/lib';&lt;BR /&gt;$ENV{LD_PRELOAD}='/opt/perl5/bin:/opt/perl5/lib/site_perl/5.8.8/PA-RISC2.0-thread-multi-LP64/auto/DBD/Oracle:/opt/perl5/lib/site_perl/5.8.8/PA-RISC2.0-thread-multi-LP64:$ORACLE_HOME:$ORACLE_HOME/lib';&lt;BR /&gt;$ENV{LD_RUN_PATH}='/orasw/oracle/product/db10g/lib64:/orasw/oracle/product/db10g/lib';&lt;BR /&gt;$ENV{LD_LIBRARY_PATH}='/orasw/oracle/product/db10g/lib';&lt;BR /&gt;</description>
      <pubDate>Wed, 17 Sep 2008 19:10:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-perl-5-8-8-dbd-oracle-problem/m-p/5130120#M449593</guid>
      <dc:creator>jygnash</dc:creator>
      <dc:date>2008-09-17T19:10:37Z</dc:date>
    </item>
    <item>
      <title>Re: HP UX  - PERL 5.8.8 DBD :: Oracle problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-perl-5-8-8-dbd-oracle-problem/m-p/5130121#M449594</link>
      <description>$ chatr /opt/perl5/lib/site_perl/5.8.8/PA-RISC2.0-thread-multi-LP64/auto/DBD/Oracle/Oracle.sl&lt;BR /&gt;&lt;BR /&gt;Will show you what libraries it requires, make sure that SHLIB_PATH and/ot LD_LIBRARY_PATH include the locations to those libraries before you start apache.&lt;BR /&gt;&lt;BR /&gt;Enjoy, Have FUN! H.Merijn [ who'd love to see Oracle 10 die a horrible death ]</description>
      <pubDate>Thu, 18 Sep 2008 08:09:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-perl-5-8-8-dbd-oracle-problem/m-p/5130121#M449594</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2008-09-18T08:09:26Z</dc:date>
    </item>
    <item>
      <title>Re: HP UX  - PERL 5.8.8 DBD :: Oracle problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-perl-5-8-8-dbd-oracle-problem/m-p/5130122#M449595</link>
      <description>Merijn &amp;gt; [ who'd love to see Oracle 10 die a horrible death ]&lt;BR /&gt;&lt;BR /&gt;(:-))  Do you think PostgreSQL could be Oracle's death blow?</description>
      <pubDate>Thu, 18 Sep 2008 12:56:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-perl-5-8-8-dbd-oracle-problem/m-p/5130122#M449595</guid>
      <dc:creator>Ralph Grothe</dc:creator>
      <dc:date>2008-09-18T12:56:55Z</dc:date>
    </item>
    <item>
      <title>Re: HP UX  - PERL 5.8.8 DBD :: Oracle problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-perl-5-8-8-dbd-oracle-problem/m-p/5130123#M449596</link>
      <description>I would like to hope so, but there is not a single database that doesn't cause people to swear and curse.&lt;BR /&gt;&lt;BR /&gt;It just happens that Oracle manages to make me curse way more than Postgres or Unify.&lt;BR /&gt;&lt;BR /&gt;OK, I'll just use CSV then :)&lt;BR /&gt;&lt;BR /&gt;Enjoy, Have FUN! H.Merijn</description>
      <pubDate>Thu, 18 Sep 2008 13:05:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-perl-5-8-8-dbd-oracle-problem/m-p/5130123#M449596</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2008-09-18T13:05:37Z</dc:date>
    </item>
    <item>
      <title>Re: HP UX  - PERL 5.8.8 DBD :: Oracle problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-perl-5-8-8-dbd-oracle-problem/m-p/5130124#M449597</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;&amp;gt; Merijn: OK, I'll just use CSV then :) &lt;BR /&gt;&lt;BR /&gt;Well, that's not surprising :-))&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://search.cpan.org/~hmbrand/Text-CSV_XS-0.54/" target="_blank"&gt;http://search.cpan.org/~hmbrand/Text-CSV_XS-0.54/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Thu, 18 Sep 2008 13:14:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-perl-5-8-8-dbd-oracle-problem/m-p/5130124#M449597</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2008-09-18T13:14:08Z</dc:date>
    </item>
    <item>
      <title>Re: HP UX  - PERL 5.8.8 DBD :: Oracle problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-perl-5-8-8-dbd-oracle-problem/m-p/5130125#M449598</link>
      <description>Still Failing............&lt;BR /&gt;I did chatr on Oracle.sl and it showed results as follow &lt;BR /&gt;&lt;BR /&gt;$ chatr Oracle.sl&lt;BR /&gt;Oracle.sl:&lt;BR /&gt;         64-bit ELF shared library&lt;BR /&gt;         shared library dynamic path search:&lt;BR /&gt;             LD_LIBRARY_PATH    enabled  first&lt;BR /&gt;             SHLIB_PATH         enabled  second&lt;BR /&gt;             embedded path      enabled  third  /orasw/oracle/product/db10g/lib64:/lib/pa20_64&lt;BR /&gt;         shared library list:&lt;BR /&gt;             libclntsh.sl.10.1&lt;BR /&gt;             librt.2&lt;BR /&gt;             libpthread.1&lt;BR /&gt;             libnsl.1&lt;BR /&gt;         shared library mapped private disabled&lt;BR /&gt;         shared vtable support disabled&lt;BR /&gt;         explicit unloading enabled&lt;BR /&gt;         linkage table protection disabled&lt;BR /&gt;         segments:&lt;BR /&gt;             index type     address      flags size&lt;BR /&gt;                 5 text 4000000000000000 z---c-    D (default)&lt;BR /&gt;                 6 data 8000000100000000 ---m--    D (default)&lt;BR /&gt;         static branch prediction disabled&lt;BR /&gt;         kernel assisted branch prediction enabled&lt;BR /&gt;         lazy swap allocation for dynamic segments disabled&lt;BR /&gt;         nulptr dereferences trap disabled&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I did found out the location of each library and exported with full path as below &lt;BR /&gt;export LD_LIBRARY_PATH=/usr/lib:/usr/lib/pa20_64:/orasw/oracle/product/db10g/lib:/orasw/oracle/product/db10g/lib/libclntsh.sl.10.1:/usr/lib/pa20_64/librt.2:/usr/lib/pa20_64/libpthread.1:/usr/lib/pa20_64/libnsl.1&lt;BR /&gt;export SHLIB_PATH=/usr/lib:/usr/lib/pa20_64:/orasw/oracle/product/db10g/lib:/orasw/oracle/product/db10g/lib/libclntsh.sl.10.1:/usr/lib/pa20_64/librt.2:/usr/lib/pa20_64/libpthread.1:/usr/lib/pa20_64/libnsl.1&lt;BR /&gt;export LD_PRELOAD=/usr/lib:/usr/lib/pa20_64:/opt/perl5/lib/site_perl/5.8.8/PA-RISC2.0-thread-multi-LP64/auto/DBD/Oracle:/opt/perl5/lib/site_perl/5.8.8/PA-RISC2.0-thread-multi-LP64:/orasw/oracle/product/db10g:/orasw/oracle/product/db10g/lib</description>
      <pubDate>Thu, 18 Sep 2008 13:22:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-perl-5-8-8-dbd-oracle-problem/m-p/5130125#M449598</guid>
      <dc:creator>jygnash</dc:creator>
      <dc:date>2008-09-18T13:22:09Z</dc:date>
    </item>
    <item>
      <title>Re: HP UX  - PERL 5.8.8 DBD :: Oracle problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-perl-5-8-8-dbd-oracle-problem/m-p/5130126#M449599</link>
      <description>Do you run a 64bit Apache? If not, I wouldn't know how it could work at all.&lt;BR /&gt;&lt;BR /&gt;Enjoy, Have FUN! H.Merijn</description>
      <pubDate>Thu, 18 Sep 2008 13:26:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-perl-5-8-8-dbd-oracle-problem/m-p/5130126#M449599</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2008-09-18T13:26:59Z</dc:date>
    </item>
    <item>
      <title>Re: HP UX  - PERL 5.8.8 DBD :: Oracle problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-perl-5-8-8-dbd-oracle-problem/m-p/5130127#M449600</link>
      <description>Not working but moved forward a bit....&lt;BR /&gt;Yes i have the correct apache because i had built it from the source. &lt;BR /&gt;&lt;BR /&gt;However i was able to figure out the problem by chatr on Oracle.sl as recomended by Merijn Brand.  Doing that i found out that the execution permission were not set correctly for user webserver. &lt;BR /&gt;&lt;BR /&gt;so now i am having another trouble &lt;BR /&gt;&lt;BR /&gt;Database connection not made: ERROR OCIEnvNlsCreate. Check ORACLE_HOME env var, NLS settings, permissions, etc. at /opt/hpws/apacheNew/cgi-bin/Test.</description>
      <pubDate>Thu, 18 Sep 2008 18:29:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-perl-5-8-8-dbd-oracle-problem/m-p/5130127#M449600</guid>
      <dc:creator>jygnash</dc:creator>
      <dc:date>2008-09-18T18:29:38Z</dc:date>
    </item>
    <item>
      <title>Re: HP UX  - PERL 5.8.8 DBD :: Oracle problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-perl-5-8-8-dbd-oracle-problem/m-p/5130128#M449601</link>
      <description>I don't know if in your Oracle the NLS environment ($ORACLE_NLS, $NLS_LANG) has to match you current locale ($LC_ALL, $LANG).&lt;BR /&gt;&lt;BR /&gt;I hate locates that do not match (in decreasing preference) UTF8, ISO-8859-1, or C (7-bit ASCII). There will always be some sort of mismatch.&lt;BR /&gt;&lt;BR /&gt;Then you can create your database in one locale, and (try to) access it in another. That sucks.&lt;BR /&gt;&lt;BR /&gt;Way too many things to check, and way too many points of error.&lt;BR /&gt;&lt;BR /&gt;Enjoy, Have FUN! H.Merijn [ Care to rate the answers? ]</description>
      <pubDate>Fri, 19 Sep 2008 08:12:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-perl-5-8-8-dbd-oracle-problem/m-p/5130128#M449601</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2008-09-19T08:12:40Z</dc:date>
    </item>
    <item>
      <title>Re: HP UX  - PERL 5.8.8 DBD :: Oracle problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-perl-5-8-8-dbd-oracle-problem/m-p/5130129#M449602</link>
      <description>Well Finally figured out to export the variables and now functioning ok&lt;BR /&gt;&lt;BR /&gt;IF you dont have the oracle variable you can export them through httpd.conf as below &lt;BR /&gt;&lt;BR /&gt;edit the httpd.conf and add the following lines for oracle library&lt;BR /&gt;&lt;BR /&gt;SetEnv ORACLE_HOME /orasw/oracle/product/db10g&lt;BR /&gt;PassEnv ORACLE_HOME&lt;BR /&gt;SetEnv LD_LIBRARY_PATH=/orasw/oracle/product/db10g/lib&lt;BR /&gt;PassEnv LD_LIBRARY_PATH&lt;BR /&gt;SetEnv SHLIB_PATH=/orasw/oracle/product/db10g/lib&lt;BR /&gt;PassEnv SHLIB_PATH&lt;BR /&gt;SetEnv LD_PRELOAD &lt;BR /&gt;/opt/perl5/bin:/opt/perl5/lib/site_perl/5.8.8/PA-RISC2.0-thread-multi-LP64/auto/DBD&lt;BR /&gt;/Oracle:/opt/perl5/lib/site_perl/5.8.8/PA-RISC2.0-thread-multi-LP64:/orasw/oracle/product/db10&lt;BR /&gt;g:/orasw/oracle/product/db10g/lib&lt;BR /&gt;PassEnv LD_PRELOAD&lt;BR /&gt;SetEnv LD_RUN_PATH /orasw/oracle/product/db10g/lib64:/orasw/oracle/product/db10g/lib&lt;BR /&gt;PassEnv LD_RUN_PATH&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Hope that helps.</description>
      <pubDate>Thu, 16 Oct 2008 14:28:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-perl-5-8-8-dbd-oracle-problem/m-p/5130129#M449602</guid>
      <dc:creator>jygnash</dc:creator>
      <dc:date>2008-10-16T14:28:15Z</dc:date>
    </item>
    <item>
      <title>Re: HP UX  - PERL 5.8.8 DBD :: Oracle problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-perl-5-8-8-dbd-oracle-problem/m-p/5130130#M449603</link>
      <description>Thanks for all the support i got. &lt;BR /&gt;&lt;BR /&gt;PLease seee the thread for the solution</description>
      <pubDate>Thu, 16 Oct 2008 14:29:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-perl-5-8-8-dbd-oracle-problem/m-p/5130130#M449603</guid>
      <dc:creator>jygnash</dc:creator>
      <dc:date>2008-10-16T14:29:24Z</dc:date>
    </item>
    <item>
      <title>Re: HP UX  - PERL 5.8.8 DBD :: Oracle problem</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-perl-5-8-8-dbd-oracle-problem/m-p/5130131#M449604</link>
      <description>Hi jygnash,&lt;BR /&gt;&lt;BR /&gt;please note that you aslo get the bunny assigned if you assign points.&lt;BR /&gt;See also:&lt;BR /&gt;&lt;A href="http://forums11.itrc.hp.com/service/forums/helptips.do?#28" target="_blank"&gt;http://forums11.itrc.hp.com/service/forums/helptips.do?#28&lt;/A&gt;&lt;BR /&gt;and&lt;BR /&gt;&lt;A href="http://forums11.itrc.hp.com/service/forums/helptips.do?#33" target="_blank"&gt;http://forums11.itrc.hp.com/service/forums/helptips.do?#33&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;V.&lt;BR /&gt;</description>
      <pubDate>Thu, 16 Oct 2008 15:13:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hp-ux-perl-5-8-8-dbd-oracle-problem/m-p/5130131#M449604</guid>
      <dc:creator>V. Nyga</dc:creator>
      <dc:date>2008-10-16T15:13:24Z</dc:date>
    </item>
  </channel>
</rss>

