Hi,
after duplicated test databases I found out that location of diagnostic_dest is under $ORACLE_HOME/log/.
To change it just type alter system set diagnostic_dest=new_path. It will create related folders under there.
Firstly check current path:
[oracle@fc-db-tst1 rdbms]$ export ORACLE_SID=FCDBDEV
[oracle@fc-db-tst1 rdbms]$ sqlplus "/as sysdba"
SQL*Plus: Release 11.2.0.3.0 Production on Tue Feb 4 09:53:35 2014
Copyright (c) 1982, 2011, Oracle. All rights reserved.
Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
SQL> show parameter diag
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
diagnostic_dest string /u01/app/oracle/product/11.2.0
.3/db_1/log
Change path. In my case I use Oracle recommended path
SQL> alter system set diagnostic_dest='/u01/app/oracle';
System altered.
It can take few seconds. (while creating folders)
So, check
SQL> show parameter diagnostic_dest
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
diagnostic_dest string /u01/app/oracle
[oracle@fc-db-tst1 rdbms]$ pwd
/u01/app/oracle/diag/rdbms
[oracle@fc-db-tst1 rdbms]$ ls
fcdbdev
[oracle@fc-db-tst1 rdbms]$ cd fcdbdev/
[oracle@fc-db-tst1 fcdbdev]$ ls
FCDBDEV i_1.mif
Subscribe to:
Post Comments (Atom)
Cannot access dba_directories inside procedure
Recently I faced one of familiar Oracle error ORA -00942 : table or view does not exist I got it in while compiling procedure, becaus...
-
While shutting down my TEST database process was hanged. Then I had to use shutdown abort. But when I wanted to start database it did not ...
-
Today after restarting primary and standby database servers I faced with ORA-16810 error DGMGRL> show configuration; Configuration - ...
what is that i_1.mif file??
ReplyDelete