[Oracle]11g内存占用调整步骤
Posted 1956
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[Oracle]11g内存占用调整步骤相关的知识,希望对你有一定的参考价值。
按如下的步骤调整内存
1. sqlplus /nolog
2. conn / as sysdba
3. show parameter target
4. show parameter sga
alter system set sga_max_size=512M scope=spfile;
alter system set sga_target=512M scope=spfile;
5. show parameter memory
alter system set memory_target = 2048M scope=spfile;
alter system set memory_max_target =2048M scope=spfile;
6. shutdown immediate
7. startup
如果出现启动失败,可以用默认init.ora文件启动,修复过程如下
1.使用此pfile(init.ora)文件启动oracle
startup pfile=‘E:\app\Administrator\product\11.2.0\dbhome_1\dbs\init.ora‘;
2.删除原始spfile,并创建新的spfile
create spfile from memory;
3.按照正常方式重启oracle即可。
SQL> shutdown abort
SQL> startup
以上是关于[Oracle]11g内存占用调整步骤的主要内容,如果未能解决你的问题,请参考以下文章