I want to create a batch file which will open the SQLPLUS [CLI] and will execute some stored sql file and will also store the output to text file.
So I\'ve created t
SET ORACLE_SID= sqlplus scott/tiger@DB < sql1.sql > data1.txt sqlplus scott/tiger@DB < sql2.sql > data2.txt