Co-worker of 'Pollak' here (one who knows enough SQL to be dangerous!)
The above Test2 that works within Report Designer but crashes the web interface is "SELECT * from aavwMcAfeeXtab" where "aavwMcAfeeXtab" is a view I created in Enterprise Manager for SQL Server. (i.e. created manually, NOT WITHIN the query designer in LanSweeper.)
I'm suspicious that my named view does not appear in the list of views in the Report Designer tree view. Is ReportDesigner's own Query Editor required create a report and associated view which will work in the web GUI?
--Edit: Before anybody asks, the Xtab query cannot be entered directly into the Query Editor: It chokes on the syntax that is perfectly acceptable to SQL Server:
SELECT TOP 100 PERCENT
dbo.tblComputers.Computername, dbo.tblComputers.Domain,
MIN(CASE Valuename WHEN 'HotFixVersions' THEN Value END) AS HotFixVersions,
MIN(CASE Valuename WHEN 'Version' THEN Value END) AS Version,
MIN(CASE Valuename WHEN 'EngineVersion' THEN Value END) AS EngineVersion,
MIN(CASE Valuename WHEN 'DATVersion' THEN Value END) AS DATVersion
FROM dbo.tblRegistry INNER JOIN dbo.tblComputers ON dbo.tblRegistry.Computername = dbo.tblComputers.Computername
WHERE
(dbo.tblRegistry.Regkey LIKE '%VIRUSCAN8600%')
GROUP BY
dbo.tblComputers.Computername, dbo.tblComputers.Domain
ORDER BY
dbo.tblComputers.Domain, dbo.tblComputers.Computername