当前位置:网站首页>The fourth chapter is about enabling and disabling the im column storage of table space for im enabled filling objects (IM 4.5)
The fourth chapter is about enabling and disabling the im column storage of table space for im enabled filling objects (IM 4.5)
2022-04-23 11:38:00 【Grainger】
In-Memory The manual : Preface (IM- Preface )
Chapter one Oracle Database In-Memory Relevant concepts (IM-1.1)
Chapter one Oracle Database In-Memory Relevant concepts ( To continue )(IM-1.2)
Chapter two Oracle Database In-Memory Architecture ( On ) (IM-2.1)
Chapter two In-Memory Architecture (IM-2.2)
Chapter two IM Architecture :CPU framework :SIMD Vector processing (IM-2.3)
The third chapter Enable and adjust IM The size of the column store (IM-3.1)
Chapter four by In-Memory Enable fill objects (IM-4.1 The first part )
Chapter four by In-Memory Enable fill objects (IM-4.2 The second part )
Chapter four by IM Enable and disable columns for fill objects (IM-4.3 The third part )
Enables and disables the of tablespaces IM Column store
You can enable or disable IM The tablespace stored by the column .
You can use include during tablespace creation INMEMORY
Clause CREATE TABLESPACE
Statement for IM Column repositories enable tablespaces . You can also use include INMEMORY
Clause ALTER TABLESPACE
Statement to change the tablespace to enable IM Column store .
By means of CREATE TABLESPACE
or ALTER TABLESPACE
The statement contains NO INMEMORY
Clause , You can disable IM The tablespace stored by the column .
by IM When tablespaces are enabled for column storage , By default it will be IM Column storage enables all tables and materialized views in the tablespace .INMEMORY
Clause for table , Instantiated views and tablespaces are the same . For IM When tablespaces are enabled for column storage , Disabled at IM Before the tablespace stored by the column , stay INMEMORY
Before clause and NO INMEMORY
Before clause , Need to be DEFAULT
Clause .
by IM When tablespaces are enabled for column storage , Individual tables and materialized views in a tablespace can have different memory settings , The setting of a single database object overrides the setting of the tablespace . for example , If the tablespace is set to PRIORITY LOW
Used to fill the data in memory , But the table in the tablespace is set to PRIORITY HIGH
, Then the table is used PRIORITY HIGH
.
To enable or disable IM The tablespace stored by the column , Please complete the following steps :
- Make sure that... Is enabled for the database IM Column store .
Please see the “ Enable... For the database IM Column store ”.
- Connect to the database instance as a user with appropriate privileges , To create or change a tablespace .
- Running has
INMEMORY
Clause orNO INMEMORY
ClauseCREATE TABLESPACE
orALTER TABLESPACE
sentence .
Example 4-12 Create a tablespace and enable IM Column store
The following example creates users01
Table space , And enable IM Column store :
CREATE TABLESPACE users01
DATAFILE 'users01.dbf' SIZE 40M
ONLINE
DEFAULT INMEMORY;
This sample uses INMEMORY
The default value of the clause . therefore , Use MEMCOMPRESS FOR QUERY
, And use PRIORITY NONE
.
Example 4-13 Change the tablespace to enable IM Column store
The following example changes users01
Tablespaces to enable IM Column store , Specify... For database objects in a tablespace FOR CAPACITY HIGH
Compress , And fill the data in memory PRIORITY LOW
:
ALTER TABLESPACE users01 DEFAULT INMEMORY
MEMCOMPRESS FOR CAPACITY HIGH
PRIORITY LOW;
Shandong Oracle User group (Shandong Oracle User Group), abbreviation :SDOUG, Is a full of vitality 、 Young non-profit organizations , It aims to provide an exchange platform for technology lovers in Jinan and surrounding areas .SDOUG Organize offline technology sharing activities from time to time , Promote local and surrounding IT Technological development 、 Help technology enthusiasts improve themselves . Share technology 、 Share happiness ,SDOUG On the road .
版权声明
本文为[Grainger]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/04/202204231136323617.html
边栏推荐
- Use kettle to copy records to and get records from results
- RebbitMQ的初步了解
- Tensorflow使用keras创建神经网络的方法
- Tensorflow common functions
- Database design of simple voting system
- When the activity is in progress! Click the link to join the live studio to participate in "can AI really save energy?" Let's have a discussion!
- Laravel admin time range selector daterange default value problem
- Golang's pen test questions & interview questions 01
- 卷积层和池化层总结
- qt5. 8. You want to use SQLite in the 64 bit static library, but the static library has no method to compile the supporting library
猜你喜欢
Significance of actively participating in middle school robot competition
Summary of the relationship among GPU, CUDA and cudnn
赛微微电科创板上市破发:跌幅达26% 公司市值44亿
Simple construction of rebbitmq
Docker MySQL master-slave backup
讯飞2021年营收183亿:同比增41% 净利为15.56亿
Tensorflow使用keras创建神经网络的方法
让中小学生在快乐中学习的创客教育
Database design of forum system
laravel编写Console脚本
随机推荐
使用连接组优化连接 (IM 6)
Nacos Foundation (8): login management
Change exchange II - [leetcode]
2022 love analysis · panoramic report of industrial Internet manufacturers
Significance of actively participating in middle school robot competition
Docker MySQL master-slave backup
golang之筆試題&面試題01
Learn go language 0x03: understand the dependency between variables and initialization order
ES6 learning notes II
赛微微电科创板上市破发:跌幅达26% 公司市值44亿
科创人·派拉软件CEO谭翔:零信任本质是数字安全,To B也要深研用户心智
解析性能良好的机器人使用守则
QT 64 bit static version display gif
[web daily practice] eight color puzzle (float)
Learning go language 0x08: practice using error in go language journey
Summary of convolution layer and pooling layer
Who said you should know PS? This open-source artifact can also be pulled in batch, and the effect is outstanding!
积极参与中学机器人竞赛的意义
配电房远程综合监控系统在10kV预制舱项目中的应用
Redis学习之五---高并发分布式锁实战