ORACLE_SID [message #365882] |
Fri, 03 March 2000 12:03 |
Peter Czulak
Messages: 1 Registered: March 2000
|
Junior Member |
|
|
Is Oracle storing the ORACLE_SID and utl_file_dir in one of the SYS tables?
|
|
|
Re: ORACLE_SID [message #365889 is a reply to message #365882] |
Wed, 08 March 2000 08:18 |
Dusan Marjanov
Messages: 1 Registered: March 2000
|
Junior Member |
|
|
You can find value of utl_file_dir in SYS table named V_$PARAMETER. Following select returns utl_file_dir value:
SELECT VALUE
FROM V_$PARAMETER
WHERE NAME='utl_file_dir';
Dusan Marjanov
|
|
|