WriteLog Script Examples: Difference between revisions
Jump to navigation
Jump to search
(403051) |
No edit summary |
||
Line 1: | Line 1: | ||
This page contains script examples for the [[ | This page contains script examples for the [[QPR ProcessAnalyzer Scripting Commands#--.23WriteLog|WriteLog]] script command. | ||
The following example will write "Script started", "Example", "Print Example" into the log. Note that the WriteLog command and Print SQL statement represent two different ways of generating log entries, and you can use them also separately. | The following example will write "Script started", "Example", "Print Example" into the log. Note that the WriteLog command and Print SQL statement represent two different ways of generating log entries, and you can use them also separately. |
Revision as of 07:43, 7 February 2018
This page contains script examples for the WriteLog script command.
The following example will write "Script started", "Example", "Print Example" into the log. Note that the WriteLog command and Print SQL statement represent two different ways of generating log entries, and you can use them also separately.
SELECT 'Script started' SELECT 'Example' --#WriteLog PRINT 'Print Example'