Pro*C/Pthreads Programm causes ORA-24550
700945May 12 2009 — edited May 18 2009Hello,
I've a Pro*C program which fills various large tables (in different schemas). I am executing the procedures which fill the tables as Pthreads (since I want them to run in parallel for performance reasons). When I execute all thread sequentially (pthread_join(last_thread) before every pthread_create(next_thread)) everything works fine. But when a run the threads in parallel (as they should run), I am getting: "ORA-24550: signal received: [si_signo=11][si_errno=0][si_code=1][si_addr=0x18] Aborted"
any Idea? thanks ...