I have to run multiple SQL script file in one go.
Like every time i have to write command in SQLPLUS
SQL>@d:\\a.txt SQL>@d:\\a2.txt SQL>@d:\\a3.txt SQL>@d:\\
It might be worth the time to write a shell script that runs multiple files.
#!/bin/ksh sqlplus user/password@instance <
For more on the syntax, look into Here Document