oracle中如何將表緩衝到記憶體中

來源:互聯網
上載者:User

標籤:alt   system   table   區別   scope   buffer   x11   設定   sele   

oracle快速將表緩衝到記憶體中,使得訪問速度加快。共有2種方法:  1) alter table fisher cache; 2) alter table fisher storage(buffer_pool keep);  --取消緩衝   1) alter table fisher nocache; 2) alter table fisher storage(buffer_pool default );  select table_name,OWNER,cache,buffer_pool from dba_tables where table_name= ‘FISHER‘ --查看是否緩衝 select * from dba_segments where segment_name= ‘FISHER‘ ;          --查看錶大小 兩者區別:

  1) cache是將表緩衝到share pool 中,該操作直接將表緩衝的熱端,受LRU演算法控制。

  2)將表緩衝到一個固定的記憶體空間中,預設情況下buffer_pool空間為0,。需手動設定空間大小。

 alter system set db_keep_cache_size=50M scope=both sid=‘*‘;

 

使用過第一種方法。

 

oracle中如何將表緩衝到記憶體中

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.