Deseas cambiar el tamaño del archivo de volcado máximo de memoria en la base de datos y no te permite hacerlo.?
Veamos. Si intentas hacer la siguiente instrucción en SQL*Plus, recibirás el siguiente mensaje:
SQL> alter system set max_dump_file_size= 10M scope=both;
alter system set max_dump_file_size= 10M scope=both
*
ERROR at line 1:
ORA-02065: opcion no valida para ALTER SYSTEM
Intenta hacerlo de la siguiente manera y no tendrás problema.
SQL> alter system set max_dump_file_size='10M' scope=both;
System altered.
SQL>
Veamos. Si intentas hacer la siguiente instrucción en SQL*Plus, recibirás el siguiente mensaje:
SQL> alter system set max_dump_file_size= 10M scope=both;
alter system set max_dump_file_size= 10M scope=both
*
ERROR at line 1:
ORA-02065: opcion no valida para ALTER SYSTEM
Intenta hacerlo de la siguiente manera y no tendrás problema.
SQL> alter system set max_dump_file_size='10M' scope=both;
System altered.
SQL>
No hay comentarios:
Publicar un comentario
Te agradezco tus comentarios. Te esperamos de vuelta.