偷偷摘套内射激情视频,久久精品99国产国产精,中文字幕无线乱码人妻,中文在线中文a,性爽19p

Oracle flashback buffer分配在shared pool中

數(shù)據(jù)庫 Oracle
以下的文章主要描述的是Oracle flashback buffer中參數(shù)的實際研究,以及如何在shared pool中對Oracle flashback buffer進行正確的分配。

Oracle 10g中,如果相關(guān)的數(shù)據(jù)庫啟用flashback功能的話,Oracle數(shù)據(jù)庫即在shared pool中對Oracle flashback buffer進行分配,下面就是Oracle數(shù)據(jù)庫的部分啟動日志,可以清楚的看到flashback buffer在shared pool分配了3981204 bytes。

引用

 

  1. Wed Dec 30 15:20:40 2009  
  2. Allocated 3981204 bytes in shared pool for flashback generation buffer  
  3. Starting background process RVWR  
  4. RVWR started with pid=16, OS id=724 

 

同樣在數(shù)據(jù)字典中也可以看到Oracle flashback buffer的大?。?/p>

引用

 

  1. SQL> select name,bytes from V$sgastat  
  2. 2 where pool=’shared pool’  
  3. 3 and name like ‘%flash%’;  
  4. NAME BYTES  
  5. flashback generation buff 3981204  

 

當flashback buffer空間緊張時,可能會出現(xiàn)flashback buf free by RVWR等待事件,Oracle并沒有提供參數(shù)調(diào)節(jié)flashback buffer,對于高吞吐量,并發(fā)量系統(tǒng)初始大小并不能滿足系統(tǒng)要求

目前系統(tǒng)中l(wèi)og_buffer大小為7012352 bytes,將其改為10M,重啟數(shù)據(jù)庫,觀察Oracle flashback buffer變化。

引用

 

  1. SQL> show parameter log_buffer  
  2. NAME TYPE VALUE  
  3. log_buffer integer 7012352  
  4. SQL> alter system set log_buffer=10000000 scope=spfile;  
  5. System altered.  
  6. SQL> select name,bytes from V$sgastat  
  7. 2 where pool=’shared pool’  
  8. 3 and name like ‘%flash%’;  
  9. NAME BYTES  
  10. flashback generation buff 3981204  
  11. SQL> startup force  
  12. ORACLE instance started.  
  13. Total System Global Area 536870912 bytes  
  14. Fixed Size 1262764 bytes  
  15. Variable Size 155192148 bytes  
  16. Database Buffers 369098752 bytes  
  17. Redo Buffers 11317248 bytes  
  18. Database mounted.  
  19. Database opened.  
  20. SQL> select name,bytes from V$sgastat  
  21. 2 where pool=’shared pool’  
  22. 3 and name like ‘%flash%’;  
  23. NAME BYTES  
  24. flashback generation buff 3981204  

 

可以看到flashback generation buff大小并沒有發(fā)生變化。

進一步,觀察和flashback相關(guān)的隱含參數(shù) 。以上的相關(guān)內(nèi)容就是對Oracle flashback buffer參數(shù)研究的介紹,望你能有所收獲。

【編輯推薦】

  1. Oracle redo的條目主要包含的內(nèi)容
  2. Oracle spatial空間數(shù)據(jù)表初始化的實際操作
  3. 如何正確對Oracle database link進行布式
  4. Oracle數(shù)據(jù)庫中常用時間的正確處理方案
  5. 如何正確把Oracle數(shù)據(jù)導(dǎo)出成Txt 的格式?
責(zé)任編輯:佚名 來源: 博客園
相關(guān)推薦

2009-11-17 17:47:56

Oracle Shar

2010-03-31 10:07:09

Oracle shar

2010-04-12 17:38:51

Oracle性能調(diào)整

2010-04-29 16:15:06

Oracle flas

2011-07-20 16:28:54

Oracle數(shù)據(jù)庫shared pool

2023-03-06 00:13:58

IOT內(nèi)存物聯(lián)網(wǎng)

2022-10-12 08:52:00

內(nèi)存緩沖管理

2023-05-03 21:34:34

MySQL狀態(tài)變量

2021-09-28 07:12:09

函數(shù)內(nèi)存

2019-06-24 05:05:40

緩沖池查詢數(shù)據(jù)InnoDB

2022-03-26 08:49:13

MySQL數(shù)據(jù)存儲

2022-03-22 15:05:15

MySQL緩沖池

2021-03-01 18:37:15

MySQL存儲數(shù)據(jù)

2024-10-23 08:47:46

2025-04-08 08:20:00

2023-10-07 15:56:49

三鏈表緩存頁flush鏈表

2023-10-27 08:46:30

逃逸微博線程

2009-11-17 17:39:37

Oracle DB B

2010-04-12 14:08:09

Oracle 9i R

2010-08-05 14:05:15

路由器
點贊
收藏

51CTO技術(shù)棧公眾號