Oracle RAC Startup Architecture

Oracle RAC Startup Architecture

When troubleshooting an Oracle Real Application Clusters environment, understanding the startup sequence of cluster components is extremely important. Many issues during node boot, cluster startup or database availability can be…
Fast Start Failover Issues

Fast Start Failover Issues

Enable/disable: Prerequ.: Flashback needs to be enabled on primary and failover target: SQL> select NAME, OPEN_MODE, FLASHBACK_ON from v$database; NAME OPEN_MODE FLASHBACK_ON --------- -------------------- ------------------ ITSDBTST READ ONLY WITH APPLY…
ORA-00020: maximum number of processes (<limit>) exceeded</limit>

ORA-00020: maximum number of processes () exceeded

Check database parameter To check database parameter in general: SQL> show parameter cursors ## list all parameter with name .*cursors.* NAME TYPE VALUE ------------------------------------ ----------- ------------------------------ open_cursors integer 300 session_cached_cursors…
Optimizer Statistics in Oracle 19c

Optimizer Statistics in Oracle 19c

Introduction Oracle optimizer cost model relies on statistics collected about the objects involved in a query. The query optimizer uses these statistics to choose the execution plan with the lowest cost, so up-to-date optimizer…