I tried changing the type using the following code and it gave me the error code: ORA-02303 . I am not very good at Oracle or PL / SQL, but I need to solve this; therefore, I will appreciate further assistance in this.
Thanks in advance. The code is just an example. But then again, I need to check out his dependents first.
create or replace type A as object (
x_ number,
y_ varchar2(10),
member procedure to_upper
);
/
source
share