[20171202]关于函数索引的状态.txt

简介: [20171202]关于函数索引的状态.txt --//我曾经在一篇贴子提到索引可以disable吗?链接: --//http://blog.itpub.net/267265/viewspace-2123537/ --//实际上仅仅函数索引能disable,为什么呢?实际上自己以前并不搞清楚实际上这个跟oracle使用函数的特殊性有关.

[20171202]关于函数索引的状态.txt

--//我曾经在一篇贴子提到索引可以disable吗?链接:
--//http://blog.itpub.net/267265/viewspace-2123537/
--//实际上仅仅函数索引能disable,为什么呢?实际上自己以前并不搞清楚实际上这个跟oracle使用函数的特殊性有关.
--//如果一个表删除某个字段,对应的索引也会删除.如果定义的函数删除了,对应的函数索引呢?通过例子来说明问题:

1.环境:
SCOTT@test01p> @ ver1
PORT_STRING          VERSION    BANNER                                                                       CON_ID
-------------------- ---------- ---------------------------------------------------------------------------- ------
IBMPC/WIN_NT64-9.1.0 12.1.0.1.0 Oracle Database 12c Enterprise Edition Release 12.1.0.1.0 - 64bit Production      0

2.建立测试环境:
SCOTT@test01p> create table t as select rownum id,rownum idx,'test' name from dual connect by level<=5;
Table created.

CREATE FUNCTION p2 (x NUMBER)
  RETURN NUMBER DETERMINISTIC IS
  BEGIN
    RETURN power(x,2);
  END;
/

SCOTT@test01p> CREATE INDEX if_t_idx ON t (p2 (idx));
Index created.

SCOTT@test01p> select t.*,p2(idx) from t where p2(idx)=25;
        ID        IDX NAME                    P2(IDX)
---------- ---------- -------------------- ----------
         5          5 test                         25

SCOTT@test01p> @ dpc '' ''
PLAN_TABLE_OUTPUT
-------------------------------------
SQL_ID  cz0uc8p8864nr, child number 0
-------------------------------------
select t.*,p2(idx) from t where p2(idx)=25
Plan hash value: 1228376738
-------------------------------------------------------------------------------------------------
| Id  | Operation                           | Name     | E-Rows |E-Bytes| Cost (%CPU)| E-Time   |
-------------------------------------------------------------------------------------------------
|   0 | SELECT STATEMENT                    |          |        |       |     2 (100)|          |
|   1 |  TABLE ACCESS BY INDEX ROWID BATCHED| T        |      1 |    11 |     2   (0)| 00:00:01 |
|*  2 |   INDEX RANGE SCAN                  | IF_T_IDX |      1 |       |     1   (0)| 00:00:01 |
-------------------------------------------------------------------------------------------------
Query Block Name / Object Alias (identified by operation id):
-------------------------------------------------------------
   1 - SEL$1 / T@SEL$1
   2 - SEL$1 / T@SEL$1
Predicate Information (identified by operation id):
---------------------------------------------------
   2 - access("T"."SYS_NC00004$"=25)

--//可以发现可以使用索引.

3.删除函数P2呢?
SCOTT@test01p> drop function p2;
Function dropped.

SCOTT@test01p> select index_name,index_type,funcidx_status,STATUS from user_indexes where index_name='IF_T_IDX';
INDEX_NAME           INDEX_TYPE                  FUNCIDX_ STATUS
-------------------- --------------------------- -------- -------
IF_T_IDX             FUNCTION-BASED NORMAL       DISABLED VALID
--//索引funcidx_status是disabled,而状态还有效.

SCOTT@test01p> select OWNER,OBJECT_NAME,OBJECT_ID,DATA_OBJECT_ID,OBJECT_TYPE,STATUS from dba_objects where object_name='IF_T_IDX' and owner=user;
OWNER OBJECT_NAME  OBJECT_ID DATA_OBJECT_ID OBJECT_TYPE STATUS
----- ----------- ---------- -------------- ----------- ------
SCOTT IF_T_IDX        107046         107046 INDEX       VALID

SCOTT@test01p> select * from dba_extents where owner=user and segment_name='IF_T_IDX';
OWNER SEGMENT_NAME PARTITION_NAME SEGMENT_TYPE TABLESPACE_NAME  EXTENT_ID FILE_ID BLOCK_ID BYTES BLOCKS RELATIVE_FNO
----- ------------ -------------- ------------ --------------- ---------- ------- -------- ----- ------ ------------
SCOTT IF_T_IDX                    INDEX        USERS                    0       9     9352 65536      8            9

--//索引段依旧存在没有删除.
--//也就是当函数删除时,其对应的索引状态disabled.这也就是为什么仅仅函数索引能disable.

SCOTT@test01p> alter index if_t_idx enable;
alter index if_t_idx enable
*
ERROR at line 1:
ORA-30550: index depends on a package/function spec/body which is not valid
--//函数不存在了,自然不能enable.

SCOTT@test01p> select index_name,index_type,funcidx_status,STATUS from user_indexes where index_name='IF_T_IDX';
INDEX_NAME           INDEX_TYPE                  FUNCIDX_ STATUS
-------------------- --------------------------- -------- --------------------
IF_T_IDX             FUNCTION-BASED NORMAL       DISABLED VALID

--//试着插入数据看看.
SCOTT@test01p> insert into t values (6,6,'a');
insert into t values (6,6,'a')
*
ERROR at line 1:
ORA-30554: function-based index SCOTT.IF_T_IDX is disabled
--//这时无法插入.

4.重新建立函数P2:

CREATE FUNCTION p2 (x NUMBER)
  RETURN NUMBER DETERMINISTIC IS
  BEGIN
    RETURN power(x,3);
  END;
/

--//注意函数定义不再是power(x,2),power(x,3).

SCOTT@test01p> select index_name,index_type,funcidx_status,STATUS from user_indexes where index_name='IF_T_IDX';
INDEX_NAME INDEX_TYPE            FUNCIDX_ STATUS
---------- --------------------- -------- -------
IF_T_IDX   FUNCTION-BASED NORMAL DISABLED VALID

SCOTT@test01p> select t.*,p2(idx) from t ;
ID  IDX NAME  P2(IDX)
--- ---- ----- -------
  1    1 test        1
  2    2 test        8
  3    3 test       27
  4    4 test       64
  5    5 test      125
5 rows selected.
--//OK,现在函数计算的power(idx,3).如果enable会修改函数索引的键值吗?当然现在还不能使用函数索引.

SCOTT@test01p> alter index if_t_idx enable;
Index altered.

--//^_^,这样就enable了.

SCOTT@test01p> select index_name,index_type,funcidx_status,STATUS from user_indexes where index_name='IF_T_IDX';
INDEX_NAME INDEX_TYPE            FUNCIDX_ STATUS
---------- --------------------- -------- ------
IF_T_IDX   FUNCTION-BASED NORMAL ENABLED  VALID

SCOTT@test01p> delete from t where id=5;
delete from t where id=5
             *
ERROR at line 1:
ORA-08102: index key not found, obj# 107047, file 9, block 9355 (2)

SCOTT@test01p> select OBJECT_ID,DATA_OBJECT_ID from dba_objects where object_name='IF_T_IDX' and owner=user;
OBJECT_ID DATA_OBJECT_ID
---------- --------------
    107047         107047

--//说明找不到索引键值无法删除.直接报错.插入呢?

SCOTT@test01p> insert into t values (7,7,'b');
1 row created.

SCOTT@test01p> commit ;
Commit complete.

--//可以想象现在的索引记录的键值已经乱套了.

SCOTT@test01p> select t.*,p2(idx) from t where p2(idx)=25;
        ID        IDX NAME                    P2(IDX)
---------- ---------- -------------------- ----------
         5          5 test                         25
--//这里计算power(5,2).

SCOTT@test01p> select t.*,p2(idx) from t where p2(idx)=343;
        ID        IDX NAME                    P2(IDX)
---------- ---------- -------------------- ----------
         7          7 b                           343

SCOTT@test01p> select t.*,p2(idx) from t where p2(idx)=125;
no rows selected

SCOTT@test01p> select t.*,p2(idx) from t where p2(idx)=49;
no rows selected

4.当然解决问题也很简单:
--//重建函数索引就ok了,
--//顺便测试选择rebuild online是否可行.

SCOTT@test01p> alter index if_t_idx rebuild online ;
Index altered.

SCOTT@test01p> select t.*,p2(idx) from t where p2(idx)=25;
no rows selected

SCOTT@test01p> select t.*,p2(idx) from t where p2(idx)=125;
        ID        IDX NAME                    P2(IDX)
---------- ---------- -------------------- ----------
         5          5 test                        125

SCOTT@test01p> delete from t where id=7;
1 row deleted.

SCOTT@test01p> delete from t where id=3;
1 row deleted.

SCOTT@test01p> select t.*,p2(idx) from t where p2(idx)=49;
no rows selected

--//OK,现在正常.
--//当然一般在实践中很少建立这样的函数索引.

目录
相关文章
|
SQL 测试技术 索引
[20180509]函数索引问题.txt
[20180509]函数索引问题.txt https://jonathanlewis.wordpress.com/2018/05/07/fbis-dont-exist/ --//重复测试: 1.
1123 0
|
索引
[20180425]为什么走索引逻辑读反而高.txt
[20180425]为什么走索引逻辑读反而高.txt --//别人问的问题,自己测试看看,开始以为array设置太小.还是通过例子说明问题. 1.环境: SCOTT@book> @ ver1 PORT_STRING                    VE...
1035 0
|
Oracle 关系型数据库 索引
[20180408]那些函数索引适合字段的查询.txt
[20180408]那些函数索引适合字段的查询.txt --//一般不主张建立函数索引,往往是开发的无知,使用trunc等函数,实际上一些函数也可以用于字段的查询. --//以前零碎的写过一些,放假看了https://blog.
1093 0
|
关系型数据库 Linux 索引
[20180212]函数索引问题.txt
[20180212]函数索引问题.txt --//11g下,如果函数索引,字段出现重复,出现ORA-54015: Duplicate column expression was specified.
995 0
|
Oracle 关系型数据库 数据库管理
[20170209]索引范围访问2.txt
[20170209]索引范围访问2.txt --ITPUB网友问的问题: http://www.itpub.net/thread-2083504-1-1.html --索引范围扫描是如何访问数据块的? 1 FOR  (根节点-> 分支节点->叶节点->...
695 0
|
数据库 关系型数据库 Oracle
[20161021]显示记录顺序问题.txt
[20161021]显示记录顺序问题.txt --同事在维护数据库时,发现记录显示顺序发生变化,看了一下操作过程,可以猜测可能维护后发生了行迁移导致的情况。 --通过例子说明: 1.
723 0
|
测试技术
[20160220]关于连接顺序2.txt
[20160220]关于连接顺序2.txt --前几天被问一个问题,如果使用外连接的情况,连接顺序可以改变吗?我只能说我给测试看看,再回答这个问题: --链接测试已经说明存在外连接的情况下,无法改变连接顺序的。
788 0
|
SQL Oracle 关系型数据库
[20150803]使用函数索引注意的问题.txt
[20150803]使用函数索引注意的问题.txt --昨天在10g下优化时遇到一个奇怪的问题,做一个记录: --首先说明一下,最近一段时间在做一个项目的优化,这个项目实际上ETL项目: http://baike.
857 0