|
|
|
SSC-Enthusiastic
      
Group: General Forum Members
Last Login: Thursday, April 11, 2013 1:04 PM
Points: 134,
Visits: 857
|
|
Good morning,
I have encountered an error when clicking on the "System CPU Utilization" graph. The error says:
A data source instance has not been supplied for the data source 'CHECK_DEPENDENCIES'
I have altered the stored proc, usp_Main_GetSessionInfo. To resolve an earlier date overflow error, I changed the idle_connection_time from: sum(convert(bigint, datediff(ms, login_time, getdate()))) - sum(convert(bigint, s.total_elapsed_time)) as idle_connection_time
to
sum(convert(bigint, CAST ( DATEDIFF ( minute, login_time, getdate()) AS BIGINT)*60000 + DATEDIFF ( millisecond, DATEADD ( minute,DATEDIFF ( minute, login_time, getdate() ), login_time ),getdate() ))) - sum(convert(bigint, s.total_elapsed_time)) as idle_connection_time
And now I have the CHECK_DEPENDENCIES error. Does anyone know how to resolve this?
My Blog!
|
|
|
|
|
SSC-Enthusiastic
      
Group: General Forum Members
Last Login: Thursday, April 11, 2013 1:04 PM
Points: 134,
Visits: 857
|
|
Does anyone happen to know how to resolve this issue?
My Blog!
|
|
|
|
|
SSC-Enthusiastic
      
Group: General Forum Members
Last Login: Sunday, March 03, 2013 10:42 PM
Points: 179,
Visits: 561
|
|
Check the below links will help you or not.
http://blogs.msdn.com/b/bimusings/archive/2005/07/01/434659.aspx
http://vbcity.com/blogs/xtab/archive/2010/04/29/a-data-source-instance-has-not-been-supplied-for-the-data-source-error.aspx
|
|
|
|
|
SSC-Enthusiastic
      
Group: General Forum Members
Last Login: Thursday, April 11, 2013 1:04 PM
Points: 134,
Visits: 857
|
|
It's still a no go... No one ran into this problem before?
My Blog!
|
|
|
|
|
SSChampion
        
Group: General Forum Members
Last Login: Today @ 8:58 AM
Points: 13,375,
Visits: 25,157
|
|
|
|
|
|
SSC-Enthusiastic
      
Group: General Forum Members
Last Login: Thursday, April 11, 2013 1:04 PM
Points: 134,
Visits: 857
|
|
I'm on 2008 R2 Enterprise 64-bit.
My Blog!
|
|
|
|
|
SSC-Enthusiastic
      
Group: General Forum Members
Last Login: Thursday, April 11, 2013 1:04 PM
Points: 134,
Visits: 857
|
|
Does anyone think that I should try reinstalling the Dashboard again since it doesn't seem like anyone has encountered a problem like this?
My Blog!
|
|
|
|
|
SSC-Addicted
      
Group: General Forum Members
Last Login: Tuesday, April 02, 2013 7:10 AM
Points: 462,
Visits: 501
|
|
dajonx (4/6/2011) I'm on 2008 R2 Enterprise 64-bit.
am i missing something?
isnt performance dashboard SQL 2005? and replace with data collection in 2008?
|
|
|
|
|
SSC-Enthusiastic
      
Group: General Forum Members
Last Login: Thursday, April 11, 2013 1:04 PM
Points: 134,
Visits: 857
|
|
Oh, I thought it was 2008 compatible; just have to change a stored procedure in the setup script due to the DMV column changes. It was working fine until last week.
I'll have to look into data collection though...
My Blog!
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Wednesday, September 05, 2012 2:22 PM
Points: 1,
Visits: 90
|
|
| We just ran into this and I think it's because one of the databases is in restoring state, and another instance with the same error a database is unavailable. I am running into a similar issue (different error) on some homegrown queries that hit the same DMVs. So I think this is caused by database state. Where exactly it occurs in the perf dashboard report code I can't say. We're running perf dashboard against SQL 2008 R2 and after the ms_ticks fix they usually run fine.
|
|
|
|