<?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: Supressing error about unset ORACLE_HOME  from DBD::Oracle in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/supressing-error-about-unset-oracle-home-from-dbd-oracle/m-p/2786624#M833833</link>
    <description>Only had some fortran in school. Come and discuss on &lt;A href="https://www.beepz.com/itrc-chat/client/index.html" target="_blank"&gt;https://www.beepz.com/itrc-chat/client/index.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;prints is mostly a sninnoff of my parrallel thinking and processing (no POSIX threads though)</description>
    <pubDate>Thu, 15 Aug 2002 11:17:07 GMT</pubDate>
    <dc:creator>H.Merijn Brand (procura</dc:creator>
    <dc:date>2002-08-15T11:17:07Z</dc:date>
    <item>
      <title>Supressing error about unset ORACLE_HOME  from DBD::Oracle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/supressing-error-about-unset-oracle-home-from-dbd-oracle/m-p/2786610#M833819</link>
      <description>After finally successfully defeating the installation beast DBD::Oracle on HP-UX 11.00 (this was a long battle),&lt;BR /&gt;I'm now about to set up some monitoring scripts for our Oracle dbs.&lt;BR /&gt;For testing purposes I created an Oracle test instance FOO.&lt;BR /&gt;To use more "user-friendly" Oracle TNS names (I dislike the names our DBAs chose ;-) I provided myself with a copy of a tnsnames.ora file with wee short  instance names of *all* our db instances where an Oracle listener is listening for connect requests.&lt;BR /&gt;I put my copy of tnsnames.ora in&lt;BR /&gt;/usr/local/etc/oracle&lt;BR /&gt;The original tnsnames.ora files provided by our DBAs reside somewhere in&lt;BR /&gt;$ORACLE_HOME/network/admin&lt;BR /&gt;&lt;BR /&gt;Please have a look at the short sample scriplet in the attachment to see how I do the connection.&lt;BR /&gt;&lt;BR /&gt;I found out that I have to take care for unsetting any ORACLE_HOME environment variable, because then the original tnsnames.ora file would take precedence over mine, which would result in a failed connection.&lt;BR /&gt;That's why I explicitly unset ORACLE_ENV should it be set, and only set TNS_ADMIN to point to the dir with my tnsnames.ora.&lt;BR /&gt;Of course I have to mention that I connect with my DBD::Oracle client remotely (i.e. DB instance runs on another host).&lt;BR /&gt;&lt;BR /&gt;When I run this script I successfully get connected, which means that my client uses my tnsnames.ora since an instance FOO is officially unknown.&lt;BR /&gt;But what still annoys me is that I cannot supress a warning/error about an unset ORACLE_HOME, which my client really  doesn't need.&lt;BR /&gt;&lt;BR /&gt;Here's the output from the attached script:&lt;BR /&gt;&lt;BR /&gt;ORACLE_HOME environment variable not set!&lt;BR /&gt;connected to FOO as system successfully&lt;BR /&gt;&lt;BR /&gt;Of course, I could close or redirect STDERR to get rid of the warning/error.&lt;BR /&gt;I also tried to set the attribute hashref's keys RaiseError and PrintError to 0.&lt;BR /&gt;But this doesn't help, and I wouldn't want to do this because I'd like to catch errors.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 15 Aug 2002 07:37:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/supressing-error-about-unset-oracle-home-from-dbd-oracle/m-p/2786610#M833819</guid>
      <dc:creator>Ralph Grothe</dc:creator>
      <dc:date>2002-08-15T07:37:07Z</dc:date>
    </item>
    <item>
      <title>Re: Supressing error about unset ORACLE_HOME  from DBD::Oracle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/supressing-error-about-unset-oracle-home-from-dbd-oracle/m-p/2786611#M833820</link>
      <description>I know you are using a recent perl :)&lt;BR /&gt;&lt;BR /&gt;Try if changing&lt;BR /&gt;&lt;BR /&gt;#!/usr/bin/perl -w&lt;BR /&gt;&lt;BR /&gt;use DBI;&lt;BR /&gt;&lt;BR /&gt;to&lt;BR /&gt;&lt;BR /&gt;#!/usr/bin/perl&lt;BR /&gt;&lt;BR /&gt;use strict;&lt;BR /&gt;use warnings;&lt;BR /&gt;use DBI;&lt;BR /&gt;&lt;BR /&gt;helps. use warnings is more localized (scoped) than -w, and might just be what you want.</description>
      <pubDate>Thu, 15 Aug 2002 09:13:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/supressing-error-about-unset-oracle-home-from-dbd-oracle/m-p/2786611#M833820</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2002-08-15T09:13:56Z</dc:date>
    </item>
    <item>
      <title>Re: Supressing error about unset ORACLE_HOME  from DBD::Oracle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/supressing-error-about-unset-oracle-home-from-dbd-oracle/m-p/2786612#M833821</link>
      <description>BTW congratulations to your new hat!</description>
      <pubDate>Thu, 15 Aug 2002 09:14:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/supressing-error-about-unset-oracle-home-from-dbd-oracle/m-p/2786612#M833821</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2002-08-15T09:14:20Z</dc:date>
    </item>
    <item>
      <title>Re: Supressing error about unset ORACLE_HOME  from DBD::Oracle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/supressing-error-about-unset-oracle-home-from-dbd-oracle/m-p/2786613#M833822</link>
      <description>Hi Ralph,&lt;BR /&gt;&lt;BR /&gt;Are you sure that you have to unset ORACLE_HOME. &lt;BR /&gt;&lt;BR /&gt;I thought that Oracle will look in the &lt;TNS_ADMIN&gt; directory (if it's set), otherwise /etc and $ORACLE_HOME/network/admin.&lt;BR /&gt;&lt;BR /&gt;I've tried it (Oracle 8.1.7) and it picks up my (private) tnsnames.ora OK.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;John&lt;/TNS_ADMIN&gt;</description>
      <pubDate>Thu, 15 Aug 2002 09:26:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/supressing-error-about-unset-oracle-home-from-dbd-oracle/m-p/2786613#M833822</guid>
      <dc:creator>John Palmer</dc:creator>
      <dc:date>2002-08-15T09:26:01Z</dc:date>
    </item>
    <item>
      <title>Re: Supressing error about unset ORACLE_HOME  from DBD::Oracle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/supressing-error-about-unset-oracle-home-from-dbd-oracle/m-p/2786614#M833823</link>
      <description>Thank you Merijn,&lt;BR /&gt;&lt;BR /&gt;but I am much more happy about that I got DBD::Oracle installed finally than about the new hat ;-)&lt;BR /&gt;&lt;BR /&gt;Of course, I always "use strict".&lt;BR /&gt;I only felt it'd be too exaggerated for just 5 lines of code.&lt;BR /&gt;&lt;BR /&gt;And, I also will be using the warnings pragma.&lt;BR /&gt;"-w" was just left over as an old habit from my previous Perl installation.&lt;BR /&gt;&lt;BR /&gt;But even with the warnings pragma the output is exactly the same.&lt;BR /&gt;So I guess this must be coming rather from some Oracle lib (or the inards of DBD::Oracle) than from Perl.&lt;BR /&gt;&lt;BR /&gt;But never mind, this is just a cosmetic problem that I can circumvent somehow.&lt;BR /&gt;&lt;BR /&gt;What upsets me more are some bugs (so it looks to me) with the debugger of Perl 5.8.0-RC3.&lt;BR /&gt;&lt;BR /&gt;For instnace the command set changed a little bit.&lt;BR /&gt;E.g. lower case "w" now sets a  watchpoint instead of the display window, but this will be regarded as a feature I suppose.&lt;BR /&gt;What I miss is that the =&amp;gt; arrow which indicated your current position, doesn't seem to work.&lt;BR /&gt;Shell escapes also don't work in this debugger (used to work in earlier versions by "!!").&lt;BR /&gt;Then the pager (I exported PAGER in my environment) isn't invoked when you use "|" before a command.&lt;BR /&gt;I really miss this feature, which was nice when you were looking on large nested data structures.&lt;BR /&gt;With nested hashes, I always used&lt;BR /&gt;"|x \%some_hash"&lt;BR /&gt;in the debugger, which would give you a nice Data::Dumper like overview of the whole data structure.&lt;BR /&gt;&lt;BR /&gt;Have you come accross those as well?&lt;BR /&gt;&lt;BR /&gt;I haven't been playing long enough yet with Perl 5.8.0 to have stumbled over other obscurities.&lt;BR /&gt;So let's see what else doesn't work the way I expect it to.&lt;BR /&gt;&lt;BR /&gt;But it clearly said in CPAN, from where I always download the sources, that this version is considered "development" ("if you want to be at the bleeding edge...")&lt;BR /&gt;&lt;BR /&gt;stable.tar.gz still contains Perl 5.6.1 !!!&lt;BR /&gt;&lt;BR /&gt;I only installed 5.8.0 because you said this would be the only version that allowed installation of DBD::Oracle on HP-UX.&lt;BR /&gt;Don't you think I can step back to 5.6.1?&lt;BR /&gt;This would make me feel more comfortable.&lt;BR /&gt;But right now I haven't the time to do a new Configure/make run.&lt;BR /&gt;I will try if DBD::Oracle cooperates with Perl 5.6.1 on HP-UX when I find time.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 15 Aug 2002 09:57:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/supressing-error-about-unset-oracle-home-from-dbd-oracle/m-p/2786614#M833823</guid>
      <dc:creator>Ralph Grothe</dc:creator>
      <dc:date>2002-08-15T09:57:13Z</dc:date>
    </item>
    <item>
      <title>Re: Supressing error about unset ORACLE_HOME  from DBD::Oracle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/supressing-error-about-unset-oracle-home-from-dbd-oracle/m-p/2786615#M833824</link>
      <description>I thought this would be enough, to clear some uncalled for ORACLE_HOME setting:&lt;BR /&gt;&lt;BR /&gt;delete $ENV{ORACLE_HOME} if exists $ENV{ORACLE_HOME};</description>
      <pubDate>Thu, 15 Aug 2002 10:03:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/supressing-error-about-unset-oracle-home-from-dbd-oracle/m-p/2786615#M833824</guid>
      <dc:creator>Ralph Grothe</dc:creator>
      <dc:date>2002-08-15T10:03:30Z</dc:date>
    </item>
    <item>
      <title>Re: Supressing error about unset ORACLE_HOME  from DBD::Oracle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/supressing-error-about-unset-oracle-home-from-dbd-oracle/m-p/2786616#M833825</link>
      <description>use the TNS_ADMIN variable.&lt;BR /&gt;If not set the config files are found in $ORACLE_HOME/network/admin or /etc.&lt;BR /&gt;&lt;BR /&gt;Of course there is a rule of priority.&lt;BR /&gt;&lt;BR /&gt;Jean-Luc</description>
      <pubDate>Thu, 15 Aug 2002 10:05:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/supressing-error-about-unset-oracle-home-from-dbd-oracle/m-p/2786616#M833825</guid>
      <dc:creator>Jean-Luc Oudart</dc:creator>
      <dc:date>2002-08-15T10:05:09Z</dc:date>
    </item>
    <item>
      <title>Re: Supressing error about unset ORACLE_HOME  from DBD::Oracle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/supressing-error-about-unset-oracle-home-from-dbd-oracle/m-p/2786617#M833826</link>
      <description>Just double checked with the POD of delete.&lt;BR /&gt;Here is what it says with regard to %ENV:&lt;BR /&gt;&lt;BR /&gt;Deleting from $ENV{} modifies the&lt;BR /&gt;              environment.</description>
      <pubDate>Thu, 15 Aug 2002 10:06:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/supressing-error-about-unset-oracle-home-from-dbd-oracle/m-p/2786617#M833826</guid>
      <dc:creator>Ralph Grothe</dc:creator>
      <dc:date>2002-08-15T10:06:08Z</dc:date>
    </item>
    <item>
      <title>Re: Supressing error about unset ORACLE_HOME  from DBD::Oracle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/supressing-error-about-unset-oracle-home-from-dbd-oracle/m-p/2786618#M833827</link>
      <description>&amp;gt; But it clearly said in CPAN, from where I&lt;BR /&gt;&amp;gt; always download the sources, that this&lt;BR /&gt;&amp;gt; version is considered "development" ("if&lt;BR /&gt;&amp;gt; you want to be at the bleeding edge...")&lt;BR /&gt;&amp;gt; stable.tar.gz still contains Perl 5.6.1 !!!&lt;BR /&gt;&lt;BR /&gt;What is your favourite CPAN? On &lt;A href="ftp://ftp.funet.fi/pub/languages/perl/CPAN/src/" target="_blank"&gt;ftp://ftp.funet.fi/pub/languages/perl/CPAN/src/&lt;/A&gt; all looks fine. What mirror is wrong? Then I can ask the responsible persons to fix it!&lt;BR /&gt;&lt;BR /&gt;&amp;gt; I only installed 5.8.0 because you said&lt;BR /&gt;&amp;gt; this would be the only version that allowed&lt;BR /&gt;&amp;gt; installation of DBD::Oracle on HP-UX.&lt;BR /&gt;&lt;BR /&gt;No, not true. Only if you depend on Unicode 5.8.0 is *needed*. And the -A trick for Oracle is not supported in 5.6.1 Configure, but you can always alter config.sh or enter it manually if you need it.&lt;BR /&gt; &lt;BR /&gt;&amp;gt; Don't you think I can step back to 5.6.1? &lt;BR /&gt;&lt;BR /&gt;No.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; This would make me feel more comfortable. &lt;BR /&gt;&lt;BR /&gt;Why?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;For the debugger issues, I don't use it :)&lt;BR /&gt;I use ptkdb (you will need Tk) from &lt;A href="ftp://ftp.funet.fi/pub/languages/perl/CPAN/modules/by-module/Devel/Devel-ptkdb-1.108.tar.gz" target="_blank"&gt;ftp://ftp.funet.fi/pub/languages/perl/CPAN/modules/by-module/Devel/Devel-ptkdb-1.108.tar.gz&lt;/A&gt; so I don't have to think about debugger options and commands</description>
      <pubDate>Thu, 15 Aug 2002 10:09:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/supressing-error-about-unset-oracle-home-from-dbd-oracle/m-p/2786618#M833827</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2002-08-15T10:09:56Z</dc:date>
    </item>
    <item>
      <title>Re: Supressing error about unset ORACLE_HOME  from DBD::Oracle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/supressing-error-about-unset-oracle-home-from-dbd-oracle/m-p/2786619#M833828</link>
      <description>Jean Luc,&lt;BR /&gt;&lt;BR /&gt;please have a look at the attachment.&lt;BR /&gt;I explicitly set $ENV{TNS_ADMIN}.&lt;BR /&gt;And as I said this works, because in the &lt;BR /&gt;$ORACLE_HOME/network/admin/tnsnames.ora&lt;BR /&gt;there is no "net service name" (cited from an Oracle training booklet a DBA lent me) such as FOO.&lt;BR /&gt;This means I wouldn't have got a connection at all if my client resorted to the "official" tnsnames.ora</description>
      <pubDate>Thu, 15 Aug 2002 10:13:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/supressing-error-about-unset-oracle-home-from-dbd-oracle/m-p/2786619#M833828</guid>
      <dc:creator>Ralph Grothe</dc:creator>
      <dc:date>2002-08-15T10:13:37Z</dc:date>
    </item>
    <item>
      <title>Re: Supressing error about unset ORACLE_HOME  from DBD::Oracle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/supressing-error-about-unset-oracle-home-from-dbd-oracle/m-p/2786620#M833829</link>
      <description>Sorry,&lt;BR /&gt;sometimes the screen goes to wide and I cannot see if there is an attachment.&lt;BR /&gt;&lt;BR /&gt;may be a "refresh" pb.&lt;BR /&gt;&lt;BR /&gt;JL</description>
      <pubDate>Thu, 15 Aug 2002 10:21:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/supressing-error-about-unset-oracle-home-from-dbd-oracle/m-p/2786620#M833829</guid>
      <dc:creator>Jean-Luc Oudart</dc:creator>
      <dc:date>2002-08-15T10:21:10Z</dc:date>
    </item>
    <item>
      <title>Re: Supressing error about unset ORACLE_HOME  from DBD::Oracle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/supressing-error-about-unset-oracle-home-from-dbd-oracle/m-p/2786621#M833830</link>
      <description>Merijn,&lt;BR /&gt;&lt;BR /&gt;I looked up my Netscape bookmarks file.&lt;BR /&gt;There I marked "&lt;A href="http://www.cpan.org/" target="_blank"&gt;http://www.cpan.org/&lt;/A&gt;"&lt;BR /&gt;&lt;BR /&gt;I always thought this would redirect me by some dispatcher process (most likely written in Perl?) on that server to a mirror closest to me with enough free bandwith.&lt;BR /&gt;&lt;BR /&gt;I can remember that when I configured the CPAN module (on first time of its shell invocation) that I was presented with a list of some 20 German CPAN mirrors of which I selected 5.&lt;BR /&gt;&lt;BR /&gt;But I don't think Netscape is consulting the CPAN module's configuration ;-)&lt;BR /&gt;&lt;BR /&gt;TK for the debugger?&lt;BR /&gt;Ough, that meant I could do my Perl scripting only if I had an X-server running.&lt;BR /&gt;Too much production in my view.&lt;BR /&gt;I've been most happy with Perl's own debugger.&lt;BR /&gt;I'm one of those anachronistic guys who don't believe in fancy images and click away icons ;-)</description>
      <pubDate>Thu, 15 Aug 2002 10:28:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/supressing-error-about-unset-oracle-home-from-dbd-oracle/m-p/2786621#M833830</guid>
      <dc:creator>Ralph Grothe</dc:creator>
      <dc:date>2002-08-15T10:28:06Z</dc:date>
    </item>
    <item>
      <title>Re: Supressing error about unset ORACLE_HOME  from DBD::Oracle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/supressing-error-about-unset-oracle-home-from-dbd-oracle/m-p/2786622#M833831</link>
      <description>Jean-Luc, attachment is on initial message&lt;BR /&gt;Ralph, I'm worse. I use print and printf statements.&lt;BR /&gt;&lt;BR /&gt;N/A&lt;BR /&gt;&lt;BR /&gt;BTW I just don't like Oracle!</description>
      <pubDate>Thu, 15 Aug 2002 10:47:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/supressing-error-about-unset-oracle-home-from-dbd-oracle/m-p/2786622#M833831</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2002-08-15T10:47:17Z</dc:date>
    </item>
    <item>
      <title>Re: Supressing error about unset ORACLE_HOME  from DBD::Oracle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/supressing-error-about-unset-oracle-home-from-dbd-oracle/m-p/2786623#M833832</link>
      <description>Then I guess you are like me a civil engineer (in my case Naval Architecture) who had been too long exposed to Fortran.&lt;BR /&gt;(I think print/write statements are the classic Fortran debugger).</description>
      <pubDate>Thu, 15 Aug 2002 11:11:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/supressing-error-about-unset-oracle-home-from-dbd-oracle/m-p/2786623#M833832</guid>
      <dc:creator>Ralph Grothe</dc:creator>
      <dc:date>2002-08-15T11:11:04Z</dc:date>
    </item>
    <item>
      <title>Re: Supressing error about unset ORACLE_HOME  from DBD::Oracle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/supressing-error-about-unset-oracle-home-from-dbd-oracle/m-p/2786624#M833833</link>
      <description>Only had some fortran in school. Come and discuss on &lt;A href="https://www.beepz.com/itrc-chat/client/index.html" target="_blank"&gt;https://www.beepz.com/itrc-chat/client/index.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;prints is mostly a sninnoff of my parrallel thinking and processing (no POSIX threads though)</description>
      <pubDate>Thu, 15 Aug 2002 11:17:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/supressing-error-about-unset-oracle-home-from-dbd-oracle/m-p/2786624#M833833</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2002-08-15T11:17:07Z</dc:date>
    </item>
    <item>
      <title>Re: Supressing error about unset ORACLE_HOME  from DBD::Oracle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/supressing-error-about-unset-oracle-home-from-dbd-oracle/m-p/2786625#M833834</link>
      <description>Sigh,&lt;BR /&gt;I envy you for your parallel thinking capabilities.&lt;BR /&gt;My neural network only only does things sequentially (that's why I'm so slow), or at least blocks any deliberate parallel paths.&lt;BR /&gt;I will have a look at your chat room...</description>
      <pubDate>Thu, 15 Aug 2002 11:32:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/supressing-error-about-unset-oracle-home-from-dbd-oracle/m-p/2786625#M833834</guid>
      <dc:creator>Ralph Grothe</dc:creator>
      <dc:date>2002-08-15T11:32:57Z</dc:date>
    </item>
    <item>
      <title>Re: Supressing error about unset ORACLE_HOME  from DBD::Oracle</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/supressing-error-about-unset-oracle-home-from-dbd-oracle/m-p/2786626#M833835</link>
      <description>Ralph,&lt;BR /&gt;&lt;BR /&gt;Most likely, the reason that you are connecting is because DBD/DBI was compiled with the Oracle Home attached.  I would recommend leaving the ORACLE_HOME in place, as using the TNS_ADMIN enviroment variable will suffice.  The search order is as follows:&lt;BR /&gt;&lt;BR /&gt;$TNS_ADMIN &lt;BR /&gt;/etc&lt;BR /&gt;$ORACLE_HOME/network/admin&lt;BR /&gt;$HOME/.tnsnames.ora&lt;BR /&gt;&lt;BR /&gt;Provided that you are setting the TNS_ADMIN variable, it should not matter if the ORACLE_HOME is set, and you would not get this error message.  &lt;BR /&gt;&lt;BR /&gt;You other option, rather than building a static tnsnames.ora file, would be to build connections dynamicly with the system name, dbname, and port number.  &lt;BR /&gt;&lt;BR /&gt;Brian</description>
      <pubDate>Fri, 16 Aug 2002 00:14:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/supressing-error-about-unset-oracle-home-from-dbd-oracle/m-p/2786626#M833835</guid>
      <dc:creator>Brian Crabtree</dc:creator>
      <dc:date>2002-08-16T00:14:10Z</dc:date>
    </item>
  </channel>
</rss>

