
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-02-2008 08:22 PM
Hi all,
We edited the All Servers report by accident and I was wondering is there a way to restore it back to its default? Can I re-install the Premium Pack to fix there, or is there any other way to recover this?
Thanks!
We edited the All Servers report by accident and I was wondering is there a way to restore it back to its default? Can I re-install the Premium Pack to fix there, or is there any other way to recover this?
Thanks!
Labels:
- Labels:
-
Report Center
2 REPLIES 2

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-02-2008 09:46 PM
This is the original code
SELECT dbo.tblComputers.Computername, dbo.tblComputers.Domain, dbo.tblComputersystem.Domainrole, dbo.tblComputersystem.Lastchanged
FROM dbo.tblComputersystem INNER JOIN
dbo.tblComputers ON dbo.tblComputersystem.Computername = dbo.tblComputers.Computername
WHERE (dbo.tblComputersystem.Domainrole > '1')

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-02-2008 10:49 PM
Lansweeper wrote:
This is the original codeSELECT dbo.tblComputers.Computername, dbo.tblComputers.Domain, dbo.tblComputersystem.Domainrole, dbo.tblComputersystem.Lastchanged
FROM dbo.tblComputersystem INNER JOIN
dbo.tblComputers ON dbo.tblComputersystem.Computername = dbo.tblComputers.Computername
WHERE (dbo.tblComputersystem.Domainrole > '1')
Thank You, this appears to have worked. Based off this code:
SELECT
dbo.tblComputers.Computername,
dbo.tblComputers.Domain,
dbo.tblComputersystem.Domainrole,
dbo.tblComputersystem.Lastchanged
FROM
dbo.tblComputersystem
INNER JOIN dbo.tblComputers ON (dbo.tblComputersystem.Computername = dbo.tblComputers.Computername)
WHERE
dbo.tblComputersystem.Domainrole > '1'
Could you help modify it so that it includes Max CPU?
Thanks!
