This article applies to all 7.x versions of XenApp and XenDesktop.
When launching Director, User Connection failure does not display any data instead a message is seen stating "Cannot retrieve the data. Data source unresponsive or reported an error. View Director server event logs for further information. "
Inside Director the below Event is displayed - Citrix Director Event ID 3- The data source 'Unknown error.' responded with an unexpected error. Console operation: 'Retrieving connection failures by type details???' Additional information: ' (0)'
Note: The solution to this issue has been implemented in XenDesktop 7.15 onwards.
For older versions follow the instructions below.
Back up data before making any changes and then follow these steps to check for zero values:
declare @did uniqueidentifier set @did = '00000000-0000-0000-0000-000000000000' delete from MonitorData.Session where machineid in (Select Id from MonitorData.Machine where DesktopGroupID = @did) delete from MonitorData.ResourceUtilizationSummary where DesktopGroupId = @did delete from MonitorData.ResourceUtilization where DesktopGroupId = @did delete from MonitorData.ApplicationInstanceSummary where DesktopGroupId = @did delete from MonitorData.DesktopGroupApplications where DesktopGroupId = @did delete from MonitorData.SessionActivitySummary where DesktopGroupId = @did delete from MonitorData.FailureLogSummary where DesktopGroupId = @did delete from MonitorData.ServerOSDesktopSummary where DesktopGroupId = @did delete from MonitorData.DesktopOSDesktopSummary where DesktopGroupId = @did delete from MonitorData.Machine where DesktopGroupId = @did delete from MonitorData.DesktopGroup where id = @did
String of zeroes in MonitorData.machine and MonitorData.DesktopGroup table.