in reply to How to run a .exe file from a Perl script?

Use system to run it:
system( $SQLPLUS ) == 0 or die $?;

Or, if you want to capture the output of the program use backticks, or the qx{} equivalent.

my $output = qx{ $SQLPLUS };