zoukankan      html  css  js  c++  java
  • 函数索引 ORA30553: The function is not deterministic 解决方法

    建函数索引的时候报错:ORA-30553: The function is not deterministic 这个函数是自定义的。

    SQL>create index mobileIndex on mobile(getmobilearea (callerno));

    Google 一下:

    ORA-30553:

    The function is not deterministic

    Cause:

    The function on which the index is defined is not deterministic

    Action:

    If the function is deterministic, mark it DETERMINISTIC. 

    If it is not deterministic (it depends on package state, database state, current time, or anything other than 

    the function inputs) then do not create the index. The values returned by a deterministic function 

    should not change even when the function is rewritten or recompiled.

     

    解决如下:

    创建基于自定义函数, 指定deterministic参数,在创建函数索引,就没有问题了

    CREATE OR REPLACE FUNCTION ICD.getmobilearea (mobileno VARCHAR2)

       RETURN VARCHAR2 deterministic

    IS

       s   VARCHAR2 (20);

       i   INTEGER;

       c   INTEGER;

    BEGIN

       FOR i IN 4 .. 11

       LOOP

          SELECT COUNT (*)

            INTO c

            FROM mobilearea

           WHERE shortno LIKE SUBSTR (mobileno, 1, i) || '%';

          s := '000';

          IF c = 0

          THEN

             EXIT;

          ELSE

             IF c = 1

             THEN

                SELECT areacode

                  INTO s

                  FROM mobilearea

                 WHERE shortno LIKE SUBSTR (mobileno, 1, i) || '%';

                EXIT;

             END IF;

          END IF;

       END LOOP;

       RETURN s;

    END getmobilearea;

    /

    道森Oracle,国内最早、最大的网络语音培训机构,我们提供专业、优质的Oracle技术培训和服务! 我们的官方网站:http://www.daosenoracle.com 官方淘宝店:http://daosenpx.taobao.com/
  • 相关阅读:
    分布式锁原理及实现方式
    【FAQ】Maven 本地仓库明明有jar包,pom文件还是报错解决办法
    【FAQ】tomcat启动jdk版本不一致
    【Map,HashMap,Vector,List】资料汇总
    【FAQ】调用接口序列化问题
    【docker】docker下安装mysql
    linux tcpdump抓包Post请求
    Springboot 在@Configuration注解的勒种 使用@Autowired或者@value注解 读取.yml属性失败
    Springboot使用Shiro-整合Redis作为缓存 解决定时刷新问题
    CentOS yum 安装nginx
  • 原文地址:https://www.cnblogs.com/tianlesoftware/p/3610174.html
Copyright © 2011-2022 走看看