I\'m newbee in oracle and
I try to change varchar(50)
to 250
CREATE OR REPLACE TYPE CEQ_OWNER.TY
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),
...
)
/