|
|
|
Old Hand
      
Group: General Forum Members
Last Login: Friday, June 14, 2013 8:27 AM
Points: 329,
Visits: 890
|
|
Hi,
IN SQL Server 2005, we have Object Execution Statistics Report. I would like to know from where does the information gets fetched or is there any table in which the information of the reports gets fetched.
With Regards Dakshina Murthy
|
|
|
|
|
SSC Veteran
      
Group: General Forum Members
Last Login: Monday, April 29, 2013 12:19 AM
Points: 219,
Visits: 326
|
|
The best thing that you can do is to run profiler at the back end for these kind of requirements while you check that report. This can tell you from where the report is getting data from .
Sriram
|
|
|
|
|
SSC-Enthusiastic
      
Group: General Forum Members
Last Login: Yesterday @ 11:50 PM
Points: 106,
Visits: 318
|
|
i think sql server collects the data at the back and store them in resource database (a hidden database). after that, we can pull the data via DMVs. this is what i guess. :)
|
|
|
|
|
Old Hand
      
Group: General Forum Members
Last Login: Friday, June 14, 2013 8:27 AM
Points: 329,
Visits: 890
|
|
Thanks for the reply, any idea how to access resource DB and from which table or where we can get the information of the statistics.
With Regards Dakshina Murthy
|
|
|
|
|
SSCrazy
      
Group: General Forum Members
Last Login: Friday, June 14, 2013 10:04 AM
Points: 2,063,
Visits: 3,447
|
|
This post from Buck Woody explains the report and there is a link on there that refers to the fact that this is part of the plan cache. You will need to hit the DMV's to get this information. Not sure exactly what ones this is pulling from though. I would run the trace to see what DMV it is using. Post back here with what you find. I know I would be interested.
David
@SQLTentmaker SQL Tentmaker “He is no fool who gives what he cannot keep to gain that which he cannot lose” - Jim Elliot
|
|
|
|