in reply to Re^3: EOF problem with sqlplus on Windows
in thread EOF problem with sqlplus on Windows

YES !!! ( thanks to http://damir-vadas.blogspot.fr/2010/11/how-to-redirect-sqlplus-result-in.html ) We thus made it this way :
$my_sql="select sysdate from dual"; my $request="echo $my_sql\|sqlplus system/password"; $result=qx($request);
Thanks for your help Jean-michel