ORA-27102: out of memory报错的处理
程序员文章站
2024-02-17 14:12:52
...
问题描述: 原先SGA 4G,PGA 2G。 alter system set sga_max_size=30G scope=spfile; alter system set sga_target=30G scope=sp
问题描述:
原先SGA 4G,PGA 2G。
alter system set sga_max_size=30G scope=spfile;
alter system set sga_target=30G scope=spfile;
之后,
SQL> shutdown immediate
Database closed.
Database dismounted.
Oracle instance shut down.
再次启动
SQL> startup
ORA-27102: out of memory
Linux-ia64 Error: 28: No space left on device
解决方法:
(1)linux下 getconf PAGE_SIZE
16384=8K
表示虚拟内存的一个页面大小为8K
(2)查看cat /proc/sys/kernel/shmall
524288
表示允许共享的内存页最大可以是 524288个页面。
(3)算出可以共享的页面为:
524288*(16384/1024)/1024/1024=8G
之前设置SGA+PGA=6G ORA-27102: out of memory
Linux-ia64 Error: 28: No space left on device
上一篇: php开发之AJAX一
推荐阅读
-
在服务器上搭的环境,smarty报错,该如何处理
-
mysql Out of memory (Needed 16777224 bytes)的错误解决
-
安装Oracle数据库时的报错处理[INS-35172]
-
安装Oracle数据库时的报错处理[INS-35172]
-
ORA-27102:out of memory Linux-x86_64 Error: 12: Cannot alloc
-
关于php使用system()开启linux下的firefox,报错:Error:no display specified,该如何处理
-
smarty 在include file 包含动态内容的时候报错(http 500),该如何处理
-
解决Python运行文件出现out of memory框的问题
-
mysql Out of memory (Needed 16777224 bytes)的错误解决
-
FileNotFoundError: [Errno 2] No such file or directory: ‘errors.out‘ (python自然语言处理 5.6 最后的示例报错)