DB

memory_target 조절

Lawmin 2014. 4. 20. 21:01

$ sqlplus "/as sysdba"


SQL> alter system set memory_target=4g scope=spfile;

SQL>create pfile from spfile;

SQL>shutdown immediate;

SQL>startup;



※ ORA-00845: MEMORY_TARGET not supported on this system

위 오류 발생시 아래 글 참조


테스트 (아래는 memory_target=4g 에 맞춰 조절)

# mount -t tmpfs shmfs -o size=4g /dev/shm


$ sqlplus "/as sysdba"

SQL>startup;


정상 구동 되면,

# vi /etc/fstab 해서 tmpfs 부분 사이즈 조절하여 고정시킴


출처: http://www.krenger.ch/blog/ora-00845-memory_target-not-supported-on-this-system/