
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-15-2009 03:01 PM
Today I was asked to print out some reports on how many laptops we have on our network and now many desktops and what there numbers where. When trying to create a rapport to do so report creator crashed and I had to use task manager to stop it's process. But it seems this has somehow impacted the database beyond the one report.
Now when trying to get any information about laptops if it's: Laptops without VPN Patch ore All portable computers the pages just stops.
Is there any way you could help me whit this problem whit out losing all data maybe a default report table? please keep in mind that my SQL knowledge is limited
Now when trying to get any information about laptops if it's: Laptops without VPN Patch ore All portable computers the pages just stops.
Is there any way you could help me whit this problem whit out losing all data maybe a default report table? please keep in mind that my SQL knowledge is limited
Labels:
- Labels:
-
Archive
5 REPLIES 5

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-16-2009 11:19 AM
You can change this setting using the configuration utility.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-16-2009 11:12 AM
Super that fixed my problem. Only thing is that there are no percentages but those will return I hope?

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-16-2009 10:33 AM
try to execute this code
create view web30repallportables as SELECT TOP 100 PERCENT dbo.tblComputers.Computername AS Computer, dbo.tblOperatingsystem.Description, dbo.tblComputerSystemProduct.Vendor,
dbo.tblComputerSystemProduct.Name, dbo.tblComputers.Lastseen AS [Last scanned], dbo.tblComputerSystemProduct.Lastchanged
FROM dbo.tblComputers LEFT OUTER JOIN
dbo.tblComputerSystemProduct ON dbo.tblComputers.Computername = dbo.tblComputerSystemProduct.Computername LEFT OUTER JOIN
dbo.tblOperatingsystem ON dbo.tblComputers.Computername = dbo.tblOperatingsystem.Computername
WHERE (dbo.tblComputers.Computername IN
(SELECT tblportablebattery.computername
FROM tblportablebattery))
ORDER BY dbo.tblComputers.Computername

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-16-2009 10:29 AM
No I get the fallowing error: invalid object name 'web30repallportables' when I try to open the report

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-15-2009 04:59 PM
Could you open the report builder and edit this report?
