ORA-27102 Out of Memory問題處理

chenfengwww發表於2011-04-15

一般是SGA大小設定有關

[oracle@localhost trace]$ sqlplus / as sysdba

SQL*Plus: Release 11.1.0.6.0 - Production on Fri Apr 15 10:51:31 2011

Copyright (c) 1982, 2007, Oracle. All rights reserved.

Connected to an idle instance.

SQL> startup nomount
ORA-00845: MEMORY_TARGET not supported on this system

手動建立一個init引數檔案

調整SGA引數大小

[oracle@localhost dbs]$ vi initrp.ora

spfile='/oracle/product/11.1.0/db_1/dbs/spfilelzccb.ora'
sga_max_size=2500000000
sga_target=2500000000

[oracle@localhost ~]$ sqlplus / as sysdba

SQL*Plus: Release 11.1.0.6.0 - Production on Fri Apr 15 11:42:01 2011

Copyright (c) 1982, 2007, Oracle. All rights reserved.

Connected to an idle instance.

SQL> startup nomount pfile=/oracle/product/11.1.0/db_1/dbs/initrp.ora
ORACLE instance started.

[@more@]

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

相關文章