sql> startup 时报错:
ORA-00845: MEMORY_TARGET not supported on this system
查找资料后发现在oracle 11g中新增的内存自动管理的参数MEMORY_TARGET,它能自动调整SGA和PGA,
这个特性需要用到/dev/shm共享文件系统,而且要求/dev/shm必须大于MEMORY_TARGET,如果/dev/shm比MEMORY_TARGET小,就会报错。


在root下修改如下图:

mount -o remount,size=12288M /dev/shm

ORA-00845: MEMORY_TARGET not supported on this system解决


然后再次运行即可成功:

ORA-00845: MEMORY_TARGET not supported on this system解决

相关文章:

  • 2022-12-23
  • 2022-02-14
  • 2021-07-10
  • 2021-11-17
  • 2021-04-10
  • 2021-08-23
  • 2021-08-14
猜你喜欢
  • 2021-12-01
相关资源
相似解决方案