Link to home
Start Free TrialLog in
Avatar of anishtv
anishtv

asked on

envvariable

How can we



 set environment variable "ORA_CLIENTTRACE_DIR" to a valid directory
ASKER CERTIFIED SOLUTION
Avatar of johnsone
johnsone
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of noci
noci

if you want it relative to a current directory you can use:

export ORA_CLIENTTRACE_DIR=./subdir

or

export ORA_CLIENTTRACE_DIR=$(pwd)/subdir
Avatar of anishtv

ASKER

fine
agreed.
Avatar of anishtv

ASKER

Thanks.