Windows 下處理資料庫無法啟動問題

SDYTXM發表於2012-12-05
1.問題背景:
 
1)windows 2003 64 位,Ooracle 10g 32位 記憶體8G;
 
2)測試32位資料庫調整SGA大小;
 
3)解決資料庫不能正常啟動。
 
2.過程描述:
 
1)SQL> show parameter sga;
NAME                                 TYPE        VALUE
------------------------------------ ----------- ------------------------------
lock_sga                                   boolean     FALSE
pre_page_sga                         boolean     FALSE
sga_max_size                         big integer 1G
sga_target                                big integer 1G
注:SGA較小
 
2)調整SGA大小:
       alter system set sga_target=4096M scope=spfile;
       alter system set sga_max_size=4096M scope=spfile;
 
3)重啟資料庫
SQL> startup force;
 
4)報錯:ORA-01078和ORA-600
 
3.解決問題:
1)startup pfile='E:\oracle\product\10.2.0\admin\orcl\pfile\init.ora.712201010268';
 
2)create spfile from pfile='E:\oracle\product\10.2.
\admin\orcl\pfile\init.ora.712201010268';
3)正常啟動
SQL> startup force;
ORACLE 例程已經啟動。
Total System Global Area  612368384 bytes
Fixed Size                  1250428 bytes
Variable Size             167775108 bytes
Database Buffers          436207616 bytes
Redo Buffers                7135232 bytes
資料庫裝載完畢。
資料庫已經開啟。
 
4.分析問題:
oracle 32位 記憶體調整 有瓶頸 SGA 支援1.7G~3G
 

向Secooler 致敬!
Johnson
2012-12-5

 

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/20985606/viewspace-750572/,如需轉載,請註明出處,否則將追究法律責任。

相關文章