Sir
When I am in the folder where all files are placed it works fine

But when I trying to run the batch file through window explorer it gives the error like bellow


Sir my batch file text is like bellow
@ECHO off
sqlplus / as sysdba @setup_aliza
ECHO.
ECHO For details, check the setup_ash file in the current directory.
ECHO.
:: Display 'press any key to continue' message
PAUSE
And the next file to open is setup_aliza.sql
The code for aliza_setup.sql is
spool setup_aliza.log;
prompt>Creating users/schemas
start create_users
prompt>Connecting aliza
start connecting_aliza
prompt>Creating aliza tables
start create_aliza_tables
spool off;
exit;
How can I avoid the above error while running the batch file outside the folder.
Regards