Cursor Sharing in Oracle

Cursor Sharing in Oracle

Private SQL area holds information about a parsed SQL statement and other session specific information for processing. When a server process executes SQL or PL/SQL code, the process uses the…
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…