-
> From: Madhu Reddy [mailto:[EMAIL PROTECTED]
> Sent: Monday, June 30, 2003 9:24 AM
> To: Tim Johnson; [EMAIL PROTECTED]
> Subject: RE: PERL HANG on WINDOWS AND WAITING FOR TO
> PRESS ENTER
>
>
> Hi,
> I am already re-directing erros messages to file...
> and i am s
ginal Message-
From: Madhu Reddy [mailto:[EMAIL PROTECTED]
Sent: Monday, June 30, 2003 9:24 AM
To: Tim Johnson; [EMAIL PROTECTED]
Subject: RE: PERL HANG on WINDOWS AND WAITING FOR TO PRESS ENTER
Hi,
I am already re-directing erros messages to file...
and i am sure that there were no erros.
ev
Hi,
I am already re-directing erros messages to file...
and i am sure that there were no erros.
even if there are some erros..it should come out from
system command and should go to next step right ?
following is my system command
system `bteq <$bteq_script 2>$bteq_err >$bteq_out`;
thanks
-mad
The problem is probably in your system() command. I would recommend
redirecting STDERR to a file to see what messages you are getting.
Try putting:
open(STDERR,">error.log") || die "$!\n";
at the beginning of the section with the system commands.
If you are not on a Win32 system, then I th