小男孩‘自慰网亚洲一区二区,亚洲一级在线播放毛片,亚洲中文字幕av每天更新,黄aⅴ永久免费无码,91成人午夜在线精品,色网站免费在线观看,亚洲欧洲wwwww在线观看

分享

ORA——00845報(bào)錯(cuò)解決辦法

 昵稱40672085 2017-03-15
  今天晚上新裝一臺Oracle 11g的數(shù)據(jù)庫,打算將SGA設(shè)大一點(diǎn),知道 11g 中有一個(gè)新特新 MEMORY_TARGET,于是嘗一下鮮,誰知報(bào)了個(gè) ORA-00845,報(bào)錯(cuò)比較容易迷惑人,不借助Google真得想半天:

  



  

1

  

2

  

3

  

4

  

5

  

6

  

7

  

8

  

9

  

10

  

11

  

12

  

13

  

14

  

15

  

SQL> alter system set memory_max_target=3G scope=spfile ;

  

System altered.

  

SQL> alter system set memory_target=2G scope=spfile ;

  

System altered.

  

SQL>

  

SQL> shutdown immediate

  

Database closed.

  

Database dismounted.

  

ORACLE instance shut down.

  

SQL> startup ;

  

ORA-00845: MEMORY_TARGET not supported on this system

  

  

  來自O(shè)racle的官方解析是:

  Starting with Oracle Database 11g, the Automatic Memory Management feature requires more shared memory (/dev/shm)and file descriptors. The size of the shared memory should be at least the greater of MEMORY_MAX_TARGET and MEMORY_TARGET for each Oracle instance on the computer. If MEMORY_MAX_TARGET or MEMORY_TARGET is set to a non zero value, and an incorrect size is assigned to the shared memory, it will result in an ORA-00845 error at startup.

  簡單來說就是 MEMORY_MAX_TARGET 的設(shè)置不能超過 /dev/shm 的大?。?br/>
  



  

1

  

2

  

[oracle@FWDB FWDB]$ df -h | grep shm

  

tmpfs 2.0G 0 2.0G 0% /dev/shm

  

  

  還真是撞到這個(gè)槍口上了:

  馬上把它加大:

  



  

1

  

2

  

[root@FWDB ~]# cat /etc/fstab | grep tmpfs

  

tmpfs /dev/shm tmpfs defaults,size=4G 0 0

  

  

  現(xiàn)在可以通過重啟使這個(gè)配置生效,也可以通過重新掛載來修改其大?。?br/>
  



  

1

  

2

  

3

  

[root@FWDB ~]# mount -o remount,size=4G /dev/shm

  

[root@FWDB ~]# df -h | grep shm

  

tmpfs 4.0G 0 4.0G 0% /dev/shm

  

  

  再次啟動數(shù)據(jù)庫,沒有報(bào)錯(cuò)了。

  

    本站是提供個(gè)人知識管理的網(wǎng)絡(luò)存儲空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點(diǎn)。請注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購買等信息,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點(diǎn)擊一鍵舉報(bào)。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多