ORA-02303无法使用类型或表的相关性来删除或取代一个类型

错误描述:
ORA-02303:无法使用类型或表的相关性来删除或取代一个类型。

错误SQL:
CREATE OR REPLACE TYPE xxx  AS OBJECT (
xxx
xxx
xxx
);

原因分析:
该type被别的对象引用所以无法删除。
select * from dba_dependences 视图发现该type确实有被引用。
有其他的type引用到该type。导致无法更新该type

解决方法:
可以使用CREATE OR REPLACE type FORCE 命令来创建。

注意:
在11gR2中,对于引用该type类型的对象是表,则Force命令也无是无效的
只有当引用该type的对象也是type时,force命令是可以的。



本地实验:

1. 先创建一个type test:
SQL> CREATE OR REPLACE TYPE scott.test  ASOBJECT (
     CONFERTYPE VARCHAR2(1),
     BROKERCODE VARCHAR2(12)); 
    /

Type created.

2. 再创建一个引用该type的type test1:
SQL> CREATE OR REPLACE TYPE scott.test1 is table ofscott.test;
  2  /

Type created.

3. 尝试不用force方法修改type test:
SQL> CREATE OR REPLACE TYPE scott.test  ASOBJECT (
     CONFERTYPE VARCHAR2(1),
     BROKERCODE VARCHAR2(12),
      newvarchar2(1)); 
     /  
CREATE OR REPLACE TYPE scott.test  AS OBJECT(
*
ERROR at line 1:
ORA-02303: cannot drop or replace a type with type or tabledependents

果然报了ORA-02303的错。

4. 然后尝试用force方法进行修改type test:
SQL> CREATE OR REPLACE TYPE scott.test FORCE AS OBJECT(
     CONFERTYPE VARCHAR2(1),
     BROKERCODE VARCHAR2(12),
      newvarchar2(1)); 
     /  

Type created.

修改成功。

5. 创建一张引用该type的表 test2:
SQL> create table scott.test2 of scott.test;

Table created.

6. 尝试修改该type:
SQL> CREATE OR REPLACE TYPE scott.test  ASOBJECT (
     CONFERTYPE VARCHAR2(1),
     BROKERCODE VARCHAR2(12),
      oldvarchar2(1)); 
    / 
CREATE OR REPLACE TYPE scott.test  AS OBJECT(
*
ERROR at line 1:
ORA-02303: cannot drop or replace a type with type or tabledependents

报了ORA-02303的错。

7. 使用Force方法修改type:

SQL>  CREATE OR REPLACE TYPE scott.testforce AS OBJECT (
     CONFERTYPE VARCHAR2(1),
     BROKERCODE VARCHAR2(12),
      oldvarchar2(1)); 
     /  
 CREATE OR REPLACE TYPE scott.test force ASOBJECT (
*
ERROR at line 1:
ORA-22866: cannot replace a type with table dependents

果然不行,报了ORA-22866,对于有table引用的type使用force方法也无法修改或删除。
 

你可能感兴趣的:(Oracle)