Remove trace data from Output Window
Posted: Thu 22 Jun 2017 17:43
I am running code from within Studio Ultimate that has a Print statement that I would like to copy from the output window.
So, for example, suppose I had the following lines of code:
I would like the output windows to simply have the lines:
But, rather I'm also getting Trace data such as the name of the sql, etc, so my Output window looks something like:
How can I remove the extra information and only show what I sent via the print statements?
So, for example, suppose I had the following lines of code:
Code: Select all
Print `Hello`;
Print `Good Bye';
Code: Select all
Hello
Good Bye
Code: Select all
SQL.sql: Hello
SQL.sql: Good Bye
SQL.sql: DML succeeded [0.002s]