Oracle 12c In-Memory Option - 2
3. in-memory 相關的檢視
v$im_segments , v$im_user_segments
SELECT v.owner, v.segment_name name, v.populate_status status FROM v$im_segments;
4. 如何將objects設定 In-Memory Column Store
我們熟悉的 *_TABLES 檢視(比如dba_tables)增加了三個欄位:
INMEMORY_PRIORITY, INMEMORY_DISTRIBUTE, and INMEMORY_COMPRESSION
SELECT table_name, cache, inmemory_priority,
inmemory_distribute,inmemory_compression FROM user_tables;
如果查詢出來cache欄位的值為Y, 那麼表示他們被cache在buffer cache中了,但是還沒有
被標識為 In-Memory Column Store , 我們可以用如下語句更改:
ALTER TABLE lineorder INMEMORY;
5. INMEMORY_PRIORITY 引數
預設情況下值為NONE, 表示第一次訪問這個table的時候,oracle會將這個表放入記憶體。當然也可以
設定優先順序,設定後,資料庫開啟時,就會按照優先順序從HIGH到LOW佇列立刻populates the In-Memory
Column Store 。
如果使用alter命令修改這個引數為非預設值,那麼DDL操作直到 population 完成才會返回結束。
Alternatively, the priority level can be set, which queues the population of the table
into the In-Memory Column Store immediately. The queue is drained from HIGH to LOW
priority. This is also referred to as “at startup” as Oracle populates the In-Memory
Column Store using this priority queue each time the database starts. If the priority
is set to a non-default value during an alter command then the DDL won’t return until
the population has completed.
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/35489/viewspace-1081453/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Oracle 12c In-Memory Option - 10Oracle
- Oracle 12c In-Memory Option - 9Oracle
- Oracle 12c In-Memory Option - 8Oracle
- Oracle 12c In-Memory Option - 7Oracle
- Oracle 12c In-Memory Option - 13Oracle
- Oracle 12c In-Memory Option - 6Oracle
- Oracle 12c In-Memory Option - 5Oracle
- Oracle 12c In-Memory Option - 4Oracle
- Oracle 12c In-Memory Option - 3Oracle
- Oracle 12c In-Memory Option - 1Oracle
- Oracle 12c新特性:IN-Memory Option - 快取與引數Oracle快取
- Oracle 12C新特性In-MemoryOracle
- Oracle Database In-MemoryOracleDatabase
- 雲和恩墨獨家搶先測試In-Memory Option 特性!
- oracle with * option 理解Oracle
- 12C新特性___In-Memory列式儲存的總結
- oracle 12c release 2 安裝Oracle
- Oracle Database In-Memory Certified with EBS 12.2OracleDatabase
- 12c in memory option學習筆記一_基礎篇筆記
- 解析Oracle Database Concepts 12c(2)OracleDatabase
- Oracle 12c新特性 - Hybrid histogram 2OracleHistogram
- Oracle 12c新特性 - Top frequency histogram 2OracleHistogram
- ORACLE WITH CHECK OPTION子句詳解Oracle
- 12c釋出正式版 12.1.0.2 (包括DB In-Memory正式版)
- 12c in memory option學習筆記二_資料訪問筆記
- Oracle檢視授權(with grant option)Oracle
- Oracle ASM新增磁碟組POWER OPTIONOracleASM
- 11gR2 新特性之—In-Memory Parallel executionParallel
- Oracle 12c 2 Nodes sandbox RAC environment on your laptop!OracleAPT
- Oracle 12cOracle
- Oracle 18c新特性詳解:In-Memory 專題Oracle
- pdb的plug、unplug、drop---oracle 12c 學習(2)Oracle
- oracle 12c Deprecation of Oracle StreamsOracle
- Oracle 12C GDSOracle
- Oracle Database 12c Release 2 (12.2) RAC On Oracle Linux 7 Using VMwareOracleDatabaseLinux
- Oracle 20c 的 In-Memory 新特性 Spatial 和 Text 支援Oracle
- Oracle GoldenGate 12c (12.1.2.0.1) for IBM DB2 iSeriesOracleGoIBMDB2
- oracle 12c Release 2 版本廢棄 Non-CDB ArchitectureOracle