1. 程式人生 > >[Oracle]11g內存占用調整步驟

[Oracle]11g內存占用調整步驟

spa 出現 tex 11g eat shu dmi nis 新的

按如下的步驟調整內存

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內存占用調整步驟