DB_BLOCK_SIZE Initialization Parameter (92)
The most commonly used block size should be picked as the standard block size. In
many cases, this is the only block size that you need to specify. Typically,
DB_BLOCK_SIZE is set to either 4K or 8K. If you do not set a value for this parameter,
the default data block size is operating system specific, which is generally adequate.
You cannot change the block size after database creation except by re-creating the
database. If the database block size is different from the operating system block size,
ensure that the database block size is a multiple of the operating system block size. For
example, if your operating system block size is 2K (2048 bytes), the following setting
for the DB_BLOCK_SIZE initialization parameter is valid:
DB_BLOCK_SIZE=4096
A larger data block size provides greater efficiency in disk and memory I/O (access
and storage of data). Therefore, consider specifying a block size larger than your
operating system block size if the following conditions exist:
■ Oracle Database is on a large computer system with a large amount of memory
and fast disk drives. For example, databases controlled by mainframe computers
with vast hardware resources typically use a data block size of 4K or greater.
■ The operating system that runs Oracle Database uses a small operating system
block size. For example, if the operating system block size is 1K and the default
data block size matches this, the database may be performing an excessive amount
of disk I/O during normal operation. For best performance in this case, a database
block should consist of multiple operating system blocks.
DB_BLOCK_SIZE引數
1. 只能為4K或8K , 與作業系統相關
2. 如果該值與作業系統塊大小不一致 ,需保證該引數值為後者的整倍數
3. 大的快值提供了磁碟I/O與記憶體的效率
4. 如果以下條件存在 ,可考慮使用較大的塊值:
a. 快的磁碟驅動器 , 大的記憶體機器上
b. 執行資料庫的伺服器作業系統使用較小的塊值 ,如1K
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10599713/viewspace-995935/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Initialization
- Required parameter $xxx follows optional parameter $yyyUI
- 2.6.5.1 DB_BLOCK_SIZE 初始化引數BloC
- 初始化 (Initialization)
- UNREFERENCED_PARAMETER
- v$parameter gv$parameter 檢視 DDL 與隱含引數
- WPF initialization for opening and unitialization for closing process
- python parameter引數Python
- LTSPICE parameter設定
- Caused by: org.apache.ibatis.binding.BindingException: Parameter 'parameter' not found.解決ApacheBATException
- error:03000086:digital envelope routines::initialization errorErrorGit
- how to show hidden parameter(zt)
- Field Parameter的設定
- 每日導數92
- 《HelloGitHub》第 92 期Github
- PostgreSQL DBA(86) - Table Parameter(fillfactor)SQL
- UNREFERENCED_PARAMETER的用處
- DataTables 1.10錯誤: requested unknown parameter
- 92. Reverse Linked List II
- PostgreSQL DBA(92) - PG 12 Improving VACUUMSQL
- leetcode 92 反轉連結串列ⅡLeetCode
- 92wcms頁遊平臺
- NOIP模擬92(多校25)
- 給你的專案啟動提提速:Lazy Initialization
- Error occurred during initialization of boot layer java.lang.module.FindExceptionErrorbootJavaIndexException
- Swift中Initialization的一些個人總結Swift
- Why do STM32 initialization peripherals need to turn on the clock first?
- PostgreSQL DBA(152) - pgAdmin(log_XXX parameter:when)SQL
- PostgreSQL DBA(153) - pgAdmin(log_XXX parameter:what)SQL
- PostgreSQL DBA(151) - pgAdmin(log_XXX parameter:where)SQL
- SD 一些常用的引數(Parameter)
- 矽基流動 The parameter is invalid. Please check againAI
- 老司機 iOS 週報 #92 | 2019.11.25iOS
- [leetcode 92] 反轉連結串列 IILeetCode
- org.apache.ibatis.binding.BindingException: Parameter 'xxx' not found.ApacheBATException
- utilseq.h:92:30: error: ‘Iefp’ is not a class or namespaceErrornamespace
- 科技愛好者週刊:第 92 期
- Thread: ADMU3011E: Server launched but failed initialization. Server logfiles shthreadServerAI
- web應用servlet中Attribute、Parameter、InitParameter的區別WebServlet