ORA-00821: Specified value of sga_target 1024M is too small, needs to be at least 1732M

AleynaGulec
Dec 2, 2022

--

Merhaba, ORA-00821 hatası ve çözümü aşağıdaki gibidir.

HATA:

ORA-00821: Specified value of sga_target 1024M is too small, needs to be at least 1732M

ÇÖZÜM:

SQL> startup
ORA-00821: Specified value of sga_target 1024M is too small, needs to be at 1732M


SQL> alter system set sga_target=1732M scope=spfile;
alter system set sga_target=1732M scope=spfile
*
ERROR at line 1:ORA-01034: ORACLE not available

Pfile dosyası, hatada verdiği değere göre düzenlenir.

SQL> create pfile from spfile;
File created.

*sga_target=1732M

SQL> startup pfile= $ORACLE_HOME/dbs/initPROD.ora
ORACLE instance started.

Umarım sizler için faydalı bir doküman olmuştur. Eğer merak ettikleriniz olursa bana LinkedIn hesabımdan ulaşabilirsiniz. Bir sonraki yazılarımda görüşmek dileğiyle :)

--

--