http://dbaora.com/db-smart-flash-cache-in-oracle-11g/In case you don’t have budget to buy Exadata you can still buy huge number of flash disks and put on them part of your database. But what should be
转载 精选 2015-01-27 16:52:24
653阅读
最近一直在处理新系统的性能优化问题,这两天特地测试了下oracle 11gR2开始引入的smart flash cache。 其介绍参考MOS文档,How To Size the Database Smart Flash Cache (文档 ID 1317950.1) The Database Sm
原创 2021-07-20 14:21:05
152阅读
通过设置Oracle Smart Flash Cache为0能避免的bug
转载 2021-10-28 10:32:13
53阅读
Oracle Library CacheGainingan understanding of internal Oracle structures is essential to becoming betterDBAs and servicing our end user community. Oracle's library cache is one suchinternal structu
原创 2021-08-16 22:53:15
184阅读
一. 官网说明Memory Architecturehttp://download.oracle.com/docs/cd/B28359_01/server.111/b28318/memory.htm#i10221 The database buffer cac
转载 2011-06-28 19:40:00
87阅读
2评论
 一. 官网说明Memory Architecture​​http://download.oracle.com/docs/cd/B28359_01/server.111/b28318/memory.htm#i10221​​             The database buffer cache is the portion of the SGA that holds copies of dat
转载 2011-06-28 19:40:00
75阅读
一. 官网说明Memory Arhat holds copies
原创 2022-10-19 21:50:59
235阅读
Flash Read Cache允许您通过将主机所在的闪存设备用作缓存的方式来加快虚拟机的性能。
原创 2021-08-06 16:26:18
1059阅读
1点赞
1评论
Cache Fusion (缓存融合)实际意义上讲就是通过互连网络在集群各个节点内的SGA之间进行块传递,这样做的好处是避免多次将块写入磁盘,再重新读入到其他实例的缓存中。当一个块从磁盘读入RAC环境中的首个实例的sga中,该块会被赋予一个锁资源(区别于行级锁),以让其他实例知道该块正在被使用(或是读),当另一个实例请求该块的操作时,当前实例sga会传递一个块的副本给另一个实例(该块为最新,并未改
原创 2014-12-09 14:49:43
1726阅读
1点赞
一. 官网说明Memory Architecture​​http://download.oracle.com/docs/cd/B28359_01/server.111/b28318/memory.htm#i10221​​            The database buffer cache is the portion of the SGA that holds copies of data
转载 2022-01-04 09:53:17
96阅读
一. 官网说明Memory Architecturehttp://download.oracle.com/docs/cd/B28359_01/server.111/b28318/memory.
转载 2022-01-06 10:05:21
159阅读
一. 理论知识先看一个创建Sequence的语句:SQL> create sequence seq_tmp  2  increment by 1  3  st
原创 2022-09-08 15:15:00
369阅读
每当新建一个表,数据库会相应创建一个段。然后给这个段分配一个区。区是oracle给段分配空间的最小单位。
原创 2023-12-07 10:04:10
132阅读
用最简单的语言来描述Oracle数据库的本质,其实就是能够用磁盘上的一堆文件来存储数据,并提供了各种各样的手段对这些数据进行管理。作为管理数据的最基本要求就是能够保存和读取磁盘上文件中的数据。众所周知,读取磁盘的速度相对来说是非常慢的,而读取内存的速度相对则要快得多。因此为了能够加快处理数据的速度,Oracle必须将读取过的数据缓存在内存里。而Oracle对这些缓存在内存里的数据起了个名字:数据块
转载 精选 2013-04-19 09:44:13
482阅读
Exadata测试CELL_FLASH_CACHE KEEP
原创 2011-09-02 17:03:28
1292阅读
library cache最主要的功能就是存放用户提交的SQL语句、SQL语句相关的解析树(解析树也就是对SQL语句中所涉及的所有对象的展现 )、 执行计划、用户提交的PL/SQL程序块(包括匿名程序块、存储过程、包、函数等)以及它们转换后能够被Oracle执行的代码等。为了 对这些 内存结构进行管理,library cache中还存放了很多控制结构,包括lock、pin、dependency t
Oracle Row cache lock(dictionary cache)图解  
原创 2012-02-01 14:25:59
743阅读
Oracle Buffer Cache 原理(1)一. 官网说明Memory Architecturehttp://download.oracle.com/docs/cd/B28359_01/server.111/b28318/memory.htm#i10221           The database buffer cac
转载 精选 2014-06-24 16:57:08
1541阅读
结果集缓存 和聚合物化视图类似,报表系统和数据仓库系统是最适合结果集缓存的,这些系统通常具有大量复杂的SQL,其中不少子查询包含聚合函数,如果能够尽可能重用这些已经计算过的聚合结果集,将极大的提升系统性能并降低服务器负载。默认情况下,服务端结果集大小为共享池大小的0.5%,如果人工设置了共享池大小,
原创 2021-07-19 17:05:13
310阅读
Settings for Oracle Library Cache Reload andLibrary Cache Hit RatiosBy Richard NiemiecFor optimal performance, you’ll want tokeep the library cache reload ratio [sum(reloads) / sum(pins)] at zero
转载 2021-08-16 22:54:06
226阅读
  • 1
  • 2
  • 3
  • 4
  • 5