create type t_nest_table is table of varchar2(500);
create table table_with_nest_table (id number, o_type varchar2(100), o_info t_nest_table)
nested table o_info
store as o_info;
insert into table_with_nest_table
with tab1 as
(select *
from all_objects ao
where rownum <= 100),
tab2 as
(select tab1.object_type,
cast(collect(tab1.object_name) as t_nest_table) obj_list
from tab1
group by tab1.object_type)
select rownum,
object_type,
obj_list
from tab2;
commit;
Хочу принять данные из этой таблице (в идеале чтобы string _sqlCommand = "select * from table_with_nest_table";) в C# через Oracle.DataAccess.
Кто нибудь может подсказать - есть ли пути решения? В инете нашел только множество ссылок как можно из C# вставить в коллекции Oracle.