1, By default DBUA removes all the hidden parameters during upgrade.If you want to keep the hidden parametersinvoke DBUA with ‘keepHiddenParams’ option.e.g./dbua -keepHiddenParams
2, If you cannot start the Oracle database,you do not have valid backups to restore,lost system tablespace data files,data files corrupted !Is there a way to recover your data !Yes,Still you have an option to extract your data using an Oracle tool Data Unloading (DUL).DUL is an offline operation.DUL is the processof extracting (unloading) data from Oracle data files directly.Its an offline tool and it bypasses the Oracle Kernel.There are similarother tools availble in the market e.g DUDE / jDUL,AnySQL UnLoader (AUL),Oracle Salvage, Oracle Recovery , WisdomForce FastReader for Oracle,MyDUL,CLOUT,K2Tor Pro,FlashUnload
3, Have you ever surfaced in a situation where database was hung and you were not able to make connection or couldn’t login to the database due to ORA-00020 maximum number of processes exceeded.If yes,You can use “-prelim” option (10g onwards) to login as SYSDBA.Remember This doesn’t create a session.
sqlplus -prelim / as sysdba
4, Starting 11g Oracle has introduced a fixed table X$DBGALERTEXT, we can query this table to get the alert.log contents from sqlplus.
SQL> select message_text from X$DBGALERTEXT where rownum <= 50;Using DBMS_SYSTEM.KSDWRT procedure , We can write custom messages directly into the Oracle alertlog file.
5, Starting with Oracle Database release 11.2.0.2, setting JOB_QUEUE_PROCESSES to '0'(zero) causes both DBMS_SCHEDULER and DBMS_JOB jobs to not run. Previously, setting JOB_QUEUE_PROCESSES to 0 caused DBMS_JOB jobs to not run, but DBMS_SCHEDULER jobs were unaffected and would still run.
6, Index rebuilding in parallel changes the degree permanently .
alter index ABC_IDX rebuild parallel 4;
select degree from dba_indexes where index_name=’ABC_IDX’;
DEGREE
———
4
NOTE: This could cause plan change.
Reference http://www.dbagalaxy.com/duk/
2, If you cannot start the Oracle database,you do not have valid backups to restore,lost system tablespace data files,data files corrupted !Is there a way to recover your data !Yes,Still you have an option to extract your data using an Oracle tool Data Unloading (DUL).DUL is an offline operation.DUL is the processof extracting (unloading) data from Oracle data files directly.Its an offline tool and it bypasses the Oracle Kernel.There are similarother tools availble in the market e.g DUDE / jDUL,AnySQL UnLoader (AUL),Oracle Salvage, Oracle Recovery , WisdomForce FastReader for Oracle,MyDUL,CLOUT,K2Tor Pro,FlashUnload
3, Have you ever surfaced in a situation where database was hung and you were not able to make connection or couldn’t login to the database due to ORA-00020 maximum number of processes exceeded.If yes,You can use “-prelim” option (10g onwards) to login as SYSDBA.Remember This doesn’t create a session.
sqlplus -prelim / as sysdba
4, Starting 11g Oracle has introduced a fixed table X$DBGALERTEXT, we can query this table to get the alert.log contents from sqlplus.
SQL> select message_text from X$DBGALERTEXT where rownum <= 50;Using DBMS_SYSTEM.KSDWRT procedure , We can write custom messages directly into the Oracle alertlog file.
5, Starting with Oracle Database release 11.2.0.2, setting JOB_QUEUE_PROCESSES to '0'(zero) causes both DBMS_SCHEDULER and DBMS_JOB jobs to not run. Previously, setting JOB_QUEUE_PROCESSES to 0 caused DBMS_JOB jobs to not run, but DBMS_SCHEDULER jobs were unaffected and would still run.
6, Index rebuilding in parallel changes the degree permanently .
alter index ABC_IDX rebuild parallel 4;
select degree from dba_indexes where index_name=’ABC_IDX’;
DEGREE
———
4
NOTE: This could cause plan change.
Reference http://www.dbagalaxy.com/duk/
「喜欢这篇文章,您的关注和赞赏是给作者最好的鼓励」
关注作者
【版权声明】本文为墨天轮用户原创内容,转载时必须标注文章的来源(墨天轮),文章链接,文章作者等基本信息,否则作者和墨天轮有权追究责任。如果您发现墨天轮中有涉嫌抄袭或者侵权的内容,欢迎发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。




