
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-17-2009 04:10 PM
Yesterday I went to perform a software search from the LanSweeper home screen.
When I begin to type a software or application name, I see a drop down appear, offering possible suggestions.
So I select one, then hit the search button, and it always returns 0 results. But I know for a fact that we have these applications out there on our network.
I was doing some work with report builder a month ago and could have broken something along the way. Does anyone have any suggestions on how to fix this issue?
When I begin to type a software or application name, I see a drop down appear, offering possible suggestions.
So I select one, then hit the search button, and it always returns 0 results. But I know for a fact that we have these applications out there on our network.
I was doing some work with report builder a month ago and could have broken something along the way. Does anyone have any suggestions on how to fix this issue?
Labels:
- Labels:
-
Archive
2 REPLIES 2

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-18-2009 03:00 PM
I executed the code and it worked perfectly.
Not sure how I damaged it originally.
Thank you for your amazing support.
Taylor,

Not sure how I damaged it originally.
Thank you for your amazing support.
Taylor,

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-18-2009 02:57 PM
try this:
alter view dbo.web30repsoftwaretotal
as
SELECT TOP 1000000 dbo.tblSoftware.softwareName AS Software, dbo.tblSoftware.softwareVersion AS Version,
dbo.tblSoftware.SoftwarePublisher AS Publisher, COUNT(dbo.tblSoftware.ComputerName) AS Total
FROM dbo.tblSoftware INNER JOIN
dbo.tblComputers ON dbo.tblSoftware.ComputerName = dbo.tblComputers.Computername
GROUP BY dbo.tblSoftware.softwareName, dbo.tblSoftware.softwareVersion, dbo.tblSoftware.SoftwarePublisher
ORDER BY COUNT(dbo.tblSoftware.ComputerName) DESC
