SSRS: Showing the correct execution time on a two page report?

后端 未结 6 1225
萌比男神i
萌比男神i 2021-01-05 06:20

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

6条回答
  •  感情败类
    2021-01-05 07:07

    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...
    ...
    

提交回复
热议问题