
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-08-2009 05:07 AM
I tried to recreate it with http://www.lansweeper.com/forum/yaf_postst2235_All-installed-software--missing-links.aspx but am getting the below error when running this sql query. Create fails with the below error and as expected replacing create with alter works but doesn't get my report to re appear in the report builder or web. I am able to create the same report myself but don't have a way to map it to the web report.
Msg 2714, Level 16, State 3, Procedure web30repsoftwaretotal, Line 1
There is already an object named 'web30repsoftwaretotal' in the database.
- Labels:
-
Archive

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-09-2009 09:58 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-09-2009 09:55 PM
Great Support Experience
Deleting the report from the report builder removed it from this list I take it as I didn't manually come into the configuration tool and remove it. Maybe a SQL maintenance routine wiped out the invalid link to the report.
I am new to the product and didn't know about this section of the config utility yet. Hopefully this will help others out when they delete a report through the Report Builder and lose it from the web page.
Chad

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-09-2009 09:01 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-09-2009 08:50 PM
Attached a screenshot to the original post.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-09-2009 08:29 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-09-2009 07:50 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-09-2009 07:06 PM
INSERT INTO dbo.tsysreports
(Reportquery, Reporttitle)
SELECT 'web30repsoftwaretotal' AS Expr1, 'All installed software' AS Expr2

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-09-2009 06:24 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-09-2009 06:20 AM
alter view web30repsoftwaretotal as SELECT TOP 100 PERCENT 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
