Configurar maximo numero de cursores abiertos en Oracle

Categorías:

Con el siguiente comando podemos cambiar el numero de cursores existentes en Oracle

ALTER SYSTEM SET OPEN_CURSORS=300 SCOPE=spfile;
 
SCOPE = SPFILE
(For both static and dynamic parameters, changes are recorded in the spfile, to be given effect in the next restart.)
SCOPE = MEMORY
(For dynamic parameters, changes are applied in memory only. No static parameter change is allowed.)
SCOPE = BOTH
(For dynamic parameters, the change is applied in both the server parameter file and memory. No static parameter change is allowed.)

Y con el siguiente sql podemos ver el número de cursores

SQL> select value from v$parameter where name='open_cursors';

VALUE
--------------------------------------------------------------------------------
300

Sin respuestas

Deja un comentario