패키지/프로시저 외부에서 Oracle 연관 배열 유형을 생성할 수 있습니까? Oracle Database 10g에서 패키지 또는 프로시저 외부에 연관 배열 유형을 생성할 수 있습니까?이 연관 배열 유형을 다른 유형으로 참조할 수 있도록 이 작업을 수행할 수 있으면 좋겠습니다.예를 들어, create type my_type_map is table of varchar2(10) index by varchar2(10); create type my_other_type as object ( id number(15), member procedure initialize(p_my_type_map my_type_map) ) not instantiable not final; 오류는 다음과 같습니다. SQL> create t..