Hi all. I wonder if there is a way to debug parallel execution in pl/sql developer. For example i have a parallel enabled pipelined function and it has a sys ref_cursor parameter. and i call it like this
select * from table(sample_function(cursor(select/*+ PARALLEL(10)*/ a||b||c from sample_table)))
So it opens 10 sessions and i want during debug see each sessions work. is it possible?
I'm sorry if this question is off topic for this forum.
select * from table(sample_function(cursor(select/*+ PARALLEL(10)*/ a||b||c from sample_table)))
So it opens 10 sessions and i want during debug see each sessions work. is it possible?
I'm sorry if this question is off topic for this forum.