12c inmemory option 初体验

Posted wangxingc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了12c inmemory option 初体验相关的知识,希望对你有一定的参考价值。

检查初始化参数。

SQL> show parameter inmemory

NAME				     TYPE	 VALUE
------------------------------------ ----------- ------------------------------
inmemory_clause_default 	     string
inmemory_force			     string	 DEFAULT
inmemory_max_populate_servers	     integer	 0
inmemory_query			     string	 ENABLE
inmemory_size			     big integer 0
inmemory_trickle_repopulate_servers_ integer	 1
percent
optimizer_inmemory_aware	     boolean	 TRUE

设置inmemory_size参数并重启数据库

SQL> alter system set inmemory_size=100M scope=spfile; 

System altered.

SQL> shutdown immediate;
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> startup
ORACLE instance started.

Total System Global Area  599785472 bytes
Fixed Size		    2927192 bytes
Variable Size		  364905896 bytes
Database Buffers	  121634816 bytes
Redo Buffers		    5459968 bytes
In-Memory Area		  104857600 bytes
Database mounted.
Database opened.

创建测试表

SQL> create table inmom_tab as select * from dba_objects;

Table created.

 

 

 

 

 

 


以上是关于12c inmemory option 初体验的主要内容,如果未能解决你的问题,请参考以下文章

12C环境下分库分表改造查询优化

echart初体验

http协议初体验

python初体验

Flutter学习-flutter开发初体验

使用 inMemory 数据库时出现 R2dbc H2 问题