oracle11g - How to debug PLSQL procedure being executed by a parallel task in PLSQL developer -


i have plsql procedure using dbms_parallel_execute create new task, create chunks row_id , execute task.

procedure test begin       dbms_parallel_execute.create_task('newtask');       dbms_parallel_execute.create_chunks_by_rowid('newtask','peeush','newtable',true,1000);       dbms_parallel_execute.run_task(task_name      => 'newtask',                                     sql_stmt       => 'begin  peeush.test2(:start_id,:end_id); end;',                                     language_flag  => dbms_sql.native,                                      parallel_level => 4);   end; 

now want debug plsql developer, execution reaches @ run_task. comes out. there way step test2 procedure in plsql developer.

i think you'll need remote debugger, dbms_debug_jdwp. unfortunately pl/sql developer doesn't support , you'll need install tool does, such sql developer.


Comments

Popular posts from this blog

wordpress - (T_ENDFOREACH) php error -

Export Excel workseet into txt file using vba - (text and numbers with formulas) -

Using django-mptt to get only the categories that have items -