ORA-00845: MEMORY_TARGET not supported on this system

简介: 今天晚上新装一台Oracle 11g的数据库,打算将SGA设大一点,知道 11g 中有一个新特新 MEMORY_TARGET,于是尝一下鲜,谁知报了个 ORA-00845,报错比较容易迷...

今天晚上新装一台Oracle 11g的数据库,打算将SGA设大一点,知道 11g 中有一个新特新 MEMORY_TARGET,于是尝一下鲜,谁知报了个 ORA-00845,报错比较容易迷惑人,不借助Google真得想半天:


SQL> alter system set memory_max_target=3G scope=spfile ; 
  
System altered.
  
SQL> alter system set memory_target=2G scope=spfile ;      
  
System altered.
  
SQL> 
SQL> shutdown immediate 
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> startup ; 
ORA-00845: MEMORY_TARGET not supported on this system
      来自Oracle的官方解析是:
Starting with Oracle Database 11g, the Automatic Memory Management feature requires more shared memory (/dev/shm)and file descriptors. The size of the shared memory should be at least the greater of MEMORY_MAX_TARGET and MEMORY_TARGET for each Oracle instance on the computer. If MEMORY_MAX_TARGET or MEMORY_TARGET is set to a non zero value, and an incorrect size is assigned to the shared memory, it will result in an ORA-00845 error at startup.


      简单来说就是 MEMORY_MAX_TARGET 的设置不能超过 /dev/shm 的大小:


[oracle@FWDB FWDB]$ df -h | grep shm
tmpfs                 2.0G     0  2.0G   0% /dev/shm
    还真是撞到这个枪口上了:
      马上把它加大:


[root@FWDB ~]# cat /etc/fstab | grep tmpfs
tmpfs                   /dev/shm                tmpfs   defaults,size=4G 0 0
     现在可以通过重启使这个配置生效,也可以通过重新挂载来修改其大小:
[root@FWDB ~]# mount -o remount,size=4G /dev/shm
[root@FWDB ~]# df -h | grep shm
tmpfs                 4.0G     0  4.0G   0% /dev/shm

      再次启动数据库,没有报错了。

tmpfs 的值默认情况是为系统内存的一半,这种配置放在Redhat 系统下可以正常使用。但是在Oracle Linux 6.1 下测试,OS 启动完毕后,tmpfs 的大小还是会变成内存的一半。我们还需要修改另一个配置文件,才可以使fstab中tmpfs的修改生效:/etc/rc.d/rc.sysinit
 
第一步:找到并注释如下语句
#mount -f /dev/shm >/dev/null2>&1
 
第二步:
在rc.sysinit 中找到如下内容,在如下部分里添加tmpfs 这个类型进去:
if [ "$READONLY" !="yes" ] ; then
       action $"Mounting local filesystems: " mount -a -ttmpfs,nonfs,nfs4,smbfs,ncpfs,cifs,gfs,gfs2 -O no_netdev
else
       action $"Mounting local filesystems: " mount -a -n -ttmpfs,nonfs,nfs4,smbfs,ncpfs,cifs,gfs,gfs2 -Ono_netdev
fi
 
然后重启OS。

目录
相关文章
|
Oracle 关系型数据库 数据库管理
|
数据库
ORA-00059:maximum number of DB_FILES exceed
ORA-00059:maximum number of DB_FILES exceed SQL> show parameter db_files NAME                                 TYPE        VALUE --------------------...
1320 0