ORA-02303: cannot drop or replace a type with type or table dependents

后端 未结 4 1527
误落风尘
误落风尘 2021-02-07 13:15

I\'m newbee in oracle and I try to change varchar(50) to 250

CREATE OR REPLACE TYPE CEQ_OWNER.TY         


        
4条回答
  •  野趣味
    野趣味 (楼主)
    2021-02-07 13:53

    I was looking everywhere for the syntax also, but was having a hard time finding the documentation. From the page that Codo linked... notice that the FORCE is between the object name and as object

    create or replace type ceq_owner.type_rec_parae2 FORCE as object    
    (
      ...
      BONETAT_DESC  VARCHAR2(250),
      ... 
    )
    / 
    

提交回复
热议问题