How to echo text during SQL script execution in SQLPLUS
问题 I have a batch file which runs a SQL script in sqlplus and sends the output to a log file: sqlplus user/pw < RowCount.sql > RowCount.log My log file contains this: Connected to: Oracle Database 11g Express Edition Release 11.2.0.2.0 - Production SQL> SQL> COUNT(*) ---------- 0 SQL> COUNT(*) ---------- 0 etc. but it's several thousand lines of output and therefore hard to determine which results belong to which statement. I would like to add some formatting to the output, so that I may discern