ORA-04031:unable to allocate 3264 bytes of shared memory
1、问题背景
修改SGA重启数据库后报错系统内存:8G
原SGA大小:3G
修改后SGA大小:5G
数据库可以正常重启,但是trance日志一直在报错
2、解决办法
调整shared_pool_size和streams_pool_size大小
alter system set shared_pool_size=2G;alter system set streams_pool_size=1G;查看大小
show parameter sga;show parameter pool;
- 原大小
- 调整后大小