oracle - Metadata regarding PL/SQL package-level record types -
oracle - Metadata regarding PL/SQL package-level record types -
suppose have pl/sql bundle record
type defined:
create or replace bundle test_package type person_record_type record ( first_name varchar2(1000), last_name varchar2(1000) ); end;
is there way obtain list of fields contained within test_package.person_record_type
? example, there all_*
views information?
i not interested in schema-level record types, package-level record types.
here similar questions retrieving info bundle code.
find bundle global variables info dictionary
get bundle methods , parameters oracle
i see similar problem first one. cannot acces fields via view. there parse source text solution, ugly, or may need workaround this.
anyway, think wrong in architecture if need this.
oracle reflection plsql
Comments
Post a Comment