Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> Re: ORATAB

Re: ORATAB

From: Andy Rivenes <arivenes_at_llnl.gov>
Date: Thu, 03 Jun 2004 13:48:19 -0700
Message-Id: <6.0.0.22.2.20040603134711.029af7f8@poptop.llnl.gov>


It's port dependent. Here's a korn shell example:

   # Set port
   port=`uname`

   #
   # Port specific UNIX environment settings
   # ORATAB   - Sets oratab location
   case $port in
     "HP-UX" ) ORATAB="/etc/oratab"

;;
"SunOS" ) ORATAB="/var/opt/oracle/oratab"
;;
"Linux" ) ORATAB="/etc/oratab"
;;
* ) ORATAB="/etc/oratab"
;;

   esac

Andy Rivenes
arivenes_at_llnl.gov



Please see the official ORACLE-L FAQ: http://www.orafaq.com

To unsubscribe send email to: oracle-l-request_at_freelists.org put 'unsubscribe' in the subject line.
--
Archives are at http://www.freelists.org/archives/oracle-l/
FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html
-----------------------------------------------------------------
Received on Thu Jun 03 2004 - 15:43:43 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US