<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: MemOptimized RowStore in Oracle Database 18c	</title>
	<atom:link href="https://www.salvis.com/blog/2018/06/10/memoptimized-rowstore-in-oracle-database-18c/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.salvis.com/blog/2018/06/10/memoptimized-rowstore-in-oracle-database-18c/</link>
	<description>Database-centric development</description>
	<lastBuildDate>Wed, 08 Nov 2023 01:10:34 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>
<atom:link rel="hub" href="https://pubsubhubbub.appspot.com"/>
<atom:link rel="hub" href="https://pubsubhubbub.superfeedr.com"/>
<atom:link rel="hub" href="https://websubhub.com/hub"/>
<atom:link rel="self" href="https://www.salvis.com/blog/2018/06/10/memoptimized-rowstore-in-oracle-database-18c/feed/"/>
	<item>
		<title>
		By: Philipp Salvisberg		</title>
		<link>https://www.salvis.com/blog/2018/06/10/memoptimized-rowstore-in-oracle-database-18c/#comment-11156</link>

		<dc:creator><![CDATA[Philipp Salvisberg]]></dc:creator>
		<pubDate>Thu, 30 May 2019 11:48:37 +0000</pubDate>
		<guid isPermaLink="false">https://www.salvis.com/blog/?p=8330#comment-11156</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.salvis.com/blog/2018/06/10/memoptimized-rowstore-in-oracle-database-18c/#comment-11018&quot;&gt;Luis Santos&lt;/a&gt;.

Have you tried to use the &lt;code&gt;NOCOMPRESS&lt;/code&gt; option explicitly?
What is the result of &lt;code&gt;select * from dba_ilmpolicies;&lt;/code&gt;?
What is the result of &lt;code&gt;select banner_full from v$version;&lt;/code&gt;?
What is the result of &lt;code&gt;select value from v$parameter where name = &#039;_exadata_feature_on&#039;;&lt;/code&gt;? 
If you running this on a EE-ES, DBCS EE-EP or ExaCS system, then I suggest to contact Oracle support.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.salvis.com/blog/2018/06/10/memoptimized-rowstore-in-oracle-database-18c/#comment-11018">Luis Santos</a>.</p>
<p>Have you tried to use the <code>NOCOMPRESS</code> option explicitly?<br />
What is the result of <code>select * from dba_ilmpolicies;</code>?<br />
What is the result of <code>select banner_full from v$version;</code>?<br />
What is the result of <code>select value from v$parameter where name = '_exadata_feature_on';</code>?<br />
If you running this on a EE-ES, DBCS EE-EP or ExaCS system, then I suggest to contact Oracle support.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Luis Santos		</title>
		<link>https://www.salvis.com/blog/2018/06/10/memoptimized-rowstore-in-oracle-database-18c/#comment-11018</link>

		<dc:creator><![CDATA[Luis Santos]]></dc:creator>
		<pubDate>Fri, 10 May 2019 18:55:55 +0000</pubDate>
		<guid isPermaLink="false">https://www.salvis.com/blog/?p=8330#comment-11018</guid>

					<description><![CDATA[I&#039;m trying to reproduce your tests. But I&#039;m failing with the umcompreensible (at least to me) error:
&lt;pre class=&quot;&quot;&gt;SQL&#062; r
1 CREATE TABLE t4 (
2 key INTEGER NOT NULL,
3 value VARCHAR2(30 CHAR) NOT NULL,
4 CONSTRAINT t4_pk PRIMARY KEY (key)
5 )
6 SEGMENT CREATION IMMEDIATE
7 MEMOPTIMIZE FOR READ
8* tablespace USERS
CREATE TABLE t4 (
*
ERROR at line 1:
ORA-62141: MEMOPTIMIZE FOR READ feature cannot be used with COMPRESS option&lt;/pre&gt;
But USERS tablespace are not with COMPRESS clause, nor I&#039;m using COMPRESS clause on create table.

&lt;pre class=&quot;&quot;&gt;
SQL&#062; @printtbl8 &quot;select * from dba_tablespaces where tablespace_name=&#039;&#039;USERS&#039;&#039;&quot;
TABLESPACE_NAME : USERS
BLOCK_SIZE : 8192
INITIAL_EXTENT : 65536
NEXT_EXTENT :
MIN_EXTENTS : 1
MAX_EXTENTS : 2147483645
MAX_SIZE : 2147483645
PCT_INCREASE :
MIN_EXTLEN : 65536
STATUS : ONLINE
CONTENTS : PERMANENT
LOGGING : LOGGING
FORCE_LOGGING : NO
EXTENT_MANAGEMENT : LOCAL
ALLOCATION_TYPE : SYSTEM
PLUGGED_IN : NO
SEGMENT_SPACE_MANAGEMENT : AUTO
DEF_TAB_COMPRESSION : DISABLED
RETENTION : NOT APPLY
BIGFILE : NO
PREDICATE_EVALUATION : HOST
ENCRYPTED : NO
COMPRESS_FOR :
DEF_INMEMORY : DISABLED
DEF_INMEMORY_PRIORITY :
DEF_INMEMORY_DISTRIBUTE :
DEF_INMEMORY_COMPRESSION :
DEF_INMEMORY_DUPLICATE :
SHARED : SHARED
DEF_INDEX_COMPRESSION : DISABLED
INDEX_COMPRESS_FOR :
DEF_CELLMEMORY :
DEF_INMEMORY_SERVICE :
DEF_INMEMORY_SERVICE_NAME :
LOST_WRITE_PROTECT : OFF
CHUNK_TABLESPACE : N

&lt;/pre&gt;]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m trying to reproduce your tests. But I&#8217;m failing with the umcompreensible (at least to me) error:</p>
<pre class="">SQL&gt; r
1 CREATE TABLE t4 (
2 key INTEGER NOT NULL,
3 value VARCHAR2(30 CHAR) NOT NULL,
4 CONSTRAINT t4_pk PRIMARY KEY (key)
5 )
6 SEGMENT CREATION IMMEDIATE
7 MEMOPTIMIZE FOR READ
8* tablespace USERS
CREATE TABLE t4 (
*
ERROR at line 1:
ORA-62141: MEMOPTIMIZE FOR READ feature cannot be used with COMPRESS option</pre>
<p>But USERS tablespace are not with COMPRESS clause, nor I&#8217;m using COMPRESS clause on create table.</p>
<pre class="">
SQL&gt; @printtbl8 "select * from dba_tablespaces where tablespace_name=''USERS''"
TABLESPACE_NAME : USERS
BLOCK_SIZE : 8192
INITIAL_EXTENT : 65536
NEXT_EXTENT :
MIN_EXTENTS : 1
MAX_EXTENTS : 2147483645
MAX_SIZE : 2147483645
PCT_INCREASE :
MIN_EXTLEN : 65536
STATUS : ONLINE
CONTENTS : PERMANENT
LOGGING : LOGGING
FORCE_LOGGING : NO
EXTENT_MANAGEMENT : LOCAL
ALLOCATION_TYPE : SYSTEM
PLUGGED_IN : NO
SEGMENT_SPACE_MANAGEMENT : AUTO
DEF_TAB_COMPRESSION : DISABLED
RETENTION : NOT APPLY
BIGFILE : NO
PREDICATE_EVALUATION : HOST
ENCRYPTED : NO
COMPRESS_FOR :
DEF_INMEMORY : DISABLED
DEF_INMEMORY_PRIORITY :
DEF_INMEMORY_DISTRIBUTE :
DEF_INMEMORY_COMPRESSION :
DEF_INMEMORY_DUPLICATE :
SHARED : SHARED
DEF_INDEX_COMPRESSION : DISABLED
INDEX_COMPRESS_FOR :
DEF_CELLMEMORY :
DEF_INMEMORY_SERVICE :
DEF_INMEMORY_SERVICE_NAME :
LOST_WRITE_PROTECT : OFF
CHUNK_TABLESPACE : N

</pre>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Luis Santos		</title>
		<link>https://www.salvis.com/blog/2018/06/10/memoptimized-rowstore-in-oracle-database-18c/#comment-11017</link>

		<dc:creator><![CDATA[Luis Santos]]></dc:creator>
		<pubDate>Fri, 10 May 2019 18:43:17 +0000</pubDate>
		<guid isPermaLink="false">https://www.salvis.com/blog/?p=8330#comment-11017</guid>

					<description><![CDATA[Thanks a lot! It&#039;s the best article I found up to now about MemOptimized RowStore.]]></description>
			<content:encoded><![CDATA[<p>Thanks a lot! It&#8217;s the best article I found up to now about MemOptimized RowStore.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
