Re: question about setenv



"EdStevens" <quetico_man@xxxxxxxxx> writes:

Working with Oracle 9.2 on Solaris 5.9, I ran into some questions about
setenv (Disclaimer: I'm a DBA, not an SA).

#!/bin/sh
-set x
setenv ORACLE_SID mysid

setenv is a C shell program. The equivalent command for you using the
Bourne/POSIX shell is

ORACLE_SID=mysid
export ORACLE_SID

or more simply

export ORACLE_SID=mysid

--
Sending unsolicited commercial e-mail to this account incurs a fee of
$500 per message, and acknowledges the legality of this contract.
.