Hi
My question is: how shell I set my sqlplus (options) running under linux that the result -> output file of my sql-requests,
contains the whole input as well,
e.g.
input.sql
--first question
select count(*) from table1;
--second question
select sum(counter) from table2;
and my wished output file would be:
SQL> --first question
SQL> select count(*) from table1;
COUNT(*)
242
SQL> --second question
SQL> select sum(counter) from table2;
SUM(COUNTER)
110291
END
Jola