0

How to save the messages into a file that appear after running a query like '1 row affected' directly through a query?

1 Answers1

0

Which Database do you use?

With an Oracle database you can use "spool".

Example:

spool 'Path to your file'

{your update / insert statement here}

spool off
CLoc
  • 190
  • 1
  • 7