create or replace type "TStrings" as table of TString
create or replace type "TString" as object ( someString varchar2(1000), constructor function TString return self as result )
create table MyTestTable ( testColumn MYSCHEMA.TSTRINGS );
select * from MyTestTable