juvenile_monk has asked for the wisdom of the Perl Monks concerning the following question:
ORA-24550: signal received: Unhandled exception: Code=c0000005 Flags=0
Please find my code structure belowI have searched in various blog posts, and found one of the remedies, which actually does not work, but it will just disable the error message which shows up on the console... which is setting these flags off in the Oracle 11.2 Client "sqlnet.ora" file DIAG_ADR_ENABLED=OFF DIAG_SIGHANDLER_ENABLED=FALSE DIAG_DDE_ENABLED=FALSE Is there any solution to the above problem. Rewards to the person who helps me out with this issue.... :)use DBI; use DBD::Oracle; use Parallel::ForkManager; my $pm = Parallel::ForkManager->new(MAX_PROCESSES); my $pid = $pm->start and next; my $check = &doInsert($x,$y,$z); $pm->finish; # Terminates the child process sub doInsert { ...... ..... INSERT INTO TABLE ......... }
|
|---|