I had a Perl script that called a sql file calling the stored procedure in Oracle database. The stored procedure ran for a long time (more than 1.5 hrs) and did not return the result code to the perl script. (I could see from the job log of the stored procedure that the stored procedure was successfully completed)
I had other similar jobs that ran shorter time (e.g. 10 mins). That job could successfully got the result code.
Is the connection lost between the database server and the application server ?Is there any parameter that can control the timeout ?
Please help.
Code:
my $sql = "sqlplus -s userid/password $jobId"; $rtnCode = system($sql);
Is the connection lost between the database server and the application server ?Is there any parameter that can control the timeout ?
Please help.
Comment