SQL> create user scan identified by scan default tablespace users;
User created.
SQL> grant dba to scan;
Grant succeeded.
create table t2 (id int primary key,a1 char(10),a2 char(10))organization index;
begin
for i in 1 .. 25
loop
insert into t2 values(i,i,'a'||i);
end loop
;
commit;
end;
BEGIN
DBMS_STATS.GATHER_TABLE_STATS(ownname => 'SCAN',
tabname => 'T2',
estimate_percent => 100,
method_opt => 'for all columns size repeat',
no_invalidate => FALSE,
degree => 8,
dump iot表
本文展示了如何在Oracle数据库中创建并操作一个IoT(Index-Organized Table),包括创建用户、权限分配、表创建、数据插入、统计信息收集以及通过dump数据文件来分析IoT表的内容。通过示例详细解释了如何读取和理解IoT表的内部存储结构。
摘要由CSDN通过智能技术生成