Die Änderung wird beim nächsten STARTUP aktiv: SQL> CONNECT / AS SYSDBA Connected. SQL> Bei Änderungen können Kommentare spezifiziert werden, … alter system set memory_target=4g scope=spfile; AMM Tuning In addition to the existing memory management V$ views , Oracle 11g includes four new V$ views … Posted on May 1, 2012 December 23, 2018 by Osama Mustafa in Database.
SQL> ALTER SYSTEM SET shared_pool_size = 48M SCOPE=BOTH; System altered. Node One : ORCL1 Node Two : ORCL2. SQL> ALTER SYSTEM SET DB_DOMAIN=tom.com SCOPE=SPFILE; ALTER SYSTEM SET DB_DOMAIN=tom.com SCOPE=SPFILE * ERROR at line 1: ORA-02095: specified initialization parameter cannot be modified Followup June 03, 2008 - 5:24 pm UTC Let me detail out the various steps involved: 1. When we want to see the particular ALTER SYSTEM command like in the demonstration, the value EXTENDED is additionally required. SQL> Für statische Parameter kann nur der SCOPE=SPFILE verwendet werden. ALTER SYSTEM SET = scope=spfile sid='*'; means that this particular change in the parameter will happen on all instances after rebooting them (Default is '*') METHOD 2: Another method to change a parameter in the spfile is to export it to a pfile, change it and then create a new spfile. You are trying to set XDB events 31150 or 31156 using one of the below syntax in 11.2.0.2 - SQL> alter system set events '31156 trace name context forever, level 0x400' scope=spfile; or When you use DBCA to create an 11g Database, AUDIT_TRAIL will show as DB – I did the creation on the command line, therefore it is still NONE. SQL> ALTER SYSTEM SET memory_target = 0 SCOPE=SPFILE; ALTER SYSTEM SET memory_target = 0 SCOPE=SPFILE * ERROR at line 1: ORA-32001: write to SPFILE requested but no SPFILE is in use SQL> ALTER SYSTEM SET sga_target = 14G SCOPE=SPFILE; ALTER SYSTEM SET sga_target = 14G SCOPE=SPFILE * ERROR at line 1: ORA-32001: write to SPFILE requested … How to change SGA in Oracle Rac.
Note : You Need To Check Memory Parameter On Database , if its Have Available Size . SQL> ALTER SYSTEM SET db_block_buffers = 20000 SCOPE=SPFILE; System altered. Connect To Node One : alter system set … This Article for newbe Oracle DBA Since If you trying to change sga on rac with wrong way , spfile maybe be corrupted .