首页 > 其他分享 >解决ORA-04031:unable to allocate 56bytes of shared memory

解决ORA-04031:unable to allocate 56bytes of shared memory

时间:2023-04-06 20:58:42浏览次数:42  
标签:04031 set spfile 10G unable allocate sga ORA

登录PL/SQL Developer出现ORA-04031错误。
解决方式:

  1. 用oracle账号登录linux服务器
  2. 进入sqlplus
    sqlplus / as sysdba
  3. 查看sga大小
    show parameter sga;
    image
  4. 扩大sga空间
    alter system set sga_max_size=10G scope=spfile;
    alter system set sga_target=10G scope=spfile;
  5. 关机重启
    shutdown normal
    startup

标签:04031,set,spfile,10G,unable,allocate,sga,ORA
From: https://www.cnblogs.com/zhou-sui/p/17294115.html

相关文章