|
|
|
Grasshopper
      
Group: General Forum Members
Last Login: Monday, April 08, 2013 5:14 PM
Points: 16,
Visits: 556
|
|
Thanks Bob! That was quick. I re-traced my steps and as you just stated that's where I went wrong. So I'm back on track now. However, When I opened the "performance_dashboard_main.rd.", I received this error in the Preview tab:
An error has occurred..... Cannot read the next data row for the data set SESSION_CPU_WAIT_INFO. Difference of two datetime colums caused overflow at runtime.
Please advise.
|
|
|
|
|
Grasshopper
      
Group: General Forum Members
Last Login: Tuesday, December 01, 2009 7:50 AM
Points: 21,
Visits: 88
|
|
| I am having the same problem as mcasner, any suggestions?
|
|
|
|
|
Valued Member
      
Group: General Forum Members
Last Login: Wednesday, April 24, 2013 7:21 AM
Points: 57,
Visits: 382
|
|
| For 2008, should we use ms_ticks instead of cpu_ticks_in_ms from sys.dm_os_sys_info when creating procedure MS_PerfDashboard.usp_Main_GetCPUHistory?
|
|
|
|
|
Ten Centuries
      
Group: General Forum Members
Last Login: Yesterday @ 3:51 PM
Points: 1,132,
Visits: 664
|
|
| The Performance Dashboard was written for sql 2005. I have not ran on sql 2008, so I will have to defer the rest of the group...
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Monday, July 09, 2012 8:32 AM
Points: 6,
Visits: 41
|
|
| I am running SQL Server 2005 and I'm still getting the error I mentioned.
|
|
|
|
|
Valued Member
      
Group: General Forum Members
Last Login: Wednesday, April 24, 2013 7:21 AM
Points: 57,
Visits: 382
|
|
I think I found the answer:
http://blogs.msdn.com/vascov/archive/2008/09/30/using-performance-dashboard-with-sql-server-2008.aspx
create procedure MS_PerfDashboard.usp_Main_GetCPUHistory
as
begin
declare @ts_now bigint
select @ts_now = ms_ticks from sys.dm_os_sys_info
|
|
|
|
|
Grasshopper
      
Group: General Forum Members
Last Login: Friday, April 29, 2011 10:28 AM
Points: 13,
Visits: 12
|
|
Hi, I ran into this error:
Could not find stored procedure msdb.MS_PerfDashboard.usp_CheckDependencies
Any suggestions?
Thank you.
|
|
|
|
|
Valued Member
      
Group: General Forum Members
Last Login: Wednesday, April 24, 2013 7:21 AM
Points: 57,
Visits: 382
|
|
I actually found a better solution to my issue (converting dashboard to 2008)
http://blogs.technet.com/rob/archive/2009/02/18/performance-dashboard-reports-for-sql-server-2008.aspx
|
|
|
|
|
Ten Centuries
      
Group: General Forum Members
Last Login: Yesterday @ 3:51 PM
Points: 1,132,
Visits: 664
|
|
nathan.holtrop (7/28/2009) I am having the same problem as mcasner, any suggestions?
For the permissions problem, make sure you have select privilege on view server state...here's some info on that:
from: http://www.codeproject.com/KB/database/Dynamic_Management_Views.aspx To query a server scoped DMV, the database user must have SELECT privilege on VIEW SERVER STATE and for database scoped DMV, the user must have SELECT privilege on VIEW DATABASE STATE.
GRANT VIEW SERVER STATE to GRANT VIEW DATABASE STATE to
|
|
|
|
|
Ten Centuries
      
Group: General Forum Members
Last Login: Yesterday @ 3:51 PM
Points: 1,132,
Visits: 664
|
|
comfortzone0 (7/28/2009) Hi, I ran into this error:
Could not find stored procedure msdb.MS_PerfDashboard.usp_CheckDependencies
Any suggestions?
Thank you.
Did you get any errors when you ran the sql script file...?
|
|
|
|