I\'m just wondering how I can show the correct execution time on a report?
Until recently I had been using the following in the footer of my reports as a label expre
I'm slowly moving towards adding the execution time as a field to reports' datasets. This is particularly helpful when using cached datasets: the execution time of the report isn't really what the user wants; they want to know when the data was current.
SELECT
GetDate() AS ExecTime,
...other SQL...
...