程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> 內存表-求高手解答,ORACLE 12C 中新加功能InMemory疑問

內存表-求高手解答,ORACLE 12C 中新加功能InMemory疑問

編輯:編程綜合問答
求高手解答,ORACLE 12C 中新加功能InMemory疑問

在SQLPLUS中設置完一些表為InMemory之後,後面進行維護時,有沒有方法可以獲取到哪些表為InMemory表
我測試重復設置InMemory和no InMemory,SQLPLUS中也不會有錯誤信息

SQL> alter table test no inmemory;

Table altered.

SQL> alter table test no inmemory;

Table altered.

SQL> alter table test inmemory;

Table altered.

SQL> alter table test inmemory;

Table altered.

SQL>

最佳回答:


找到相關的查詢了,發出來共享一下

-- 查詢是否為內存表, enabled--內存表 disabled--非內存表 (普通當前用戶執行)
select t.table_name,
t.inmemory,
t.inmemory_priority,
t.inmemory_distribute,
t.inmemory_compression,
t.inmemory_duplicate,
t.*
from user_tables t;

-- 查詢InMemory空間使用量 (DBA用戶執行)
select t.POOL,
t.ALLOC_BYTES/1024/1024 || 'M' ALLOC_BYTES,
t.USED_BYTES/1024/1024 || 'M' USED_BYTES,
t.POPULATE_STATUS,
t.CON_ID
from v$inmemory_area t;

-- 調整InMemory大小
-- alter system set inmemory_size=1000M scope=spfile;
-- 重啟數據庫

-- InMemory組件是否啟用
select parameter,value from v$option where parameter like 'In-Memory%';

-- InMemory參數
select NAME,value,DESCRIPTION from v$parameter where NAME like 'inmemory%';

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved