in reply to How to run a .exe file from a Perl script?
system( $SQLPLUS ) == 0 or die $?; [download]
Or, if you want to capture the output of the program use backticks, or the qx{} equivalent.
my $output = qx{ $SQLPLUS }; [download]