
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-05-2008 10:14 PM
If I look at the list of computers (eg System Configuration Overview report or the list of computers in a domain accessed from the main dashboard) it shows the RAM as kB (eg below) instead of MB (that computer really doesn't have just 1MB of RAM!)
Is this fixable?
Steve
KC101088 Dell Inc. OptiPlex 745 1 * 3189 Mhz 1013 KB 74 GB
Is this fixable?
Steve
KC101088 Dell Inc. OptiPlex 745 1 * 3189 Mhz 1013 KB 74 GB
Labels:
- Labels:
-
Archive
4 REPLIES 4

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-15-2008 02:32 AM
Fixed it myself (worked for me anyway):
set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
GO
ALTER PROCEDURE [dbo].[web30ossearch](@comp varchar(300))
AS SELECT dbo.tblComputers.Computername, dbo.tblOperatingsystem.Description, dbo.tblComputers.Domain, dbo.tblOperatingsystem.Caption,
CAST(dbo.web30ProcessorCapacity.NrOfProcessors AS varchar) + ' * ' + CAST(dbo.web30ProcessorCapacity.MaxClockSpeed AS varchar)
+ ' Mhz' AS Processor, CAST(CAST(CAST(dbo.tblComputersystem.TotalPhysicalMemory AS bigint) / 1024 / 1024 AS NUMERIC) AS varchar)
+ ' MB' AS Memory, dbo.tblComputers.Lastseen AS [Last seen], CASE ISNULL(dbo.tblOperatingsystem.Description, 'NOT SCANNED')
WHEN 'NOT SCANNED' THEN 1 ELSE 0 END AS Notscanned
FROM dbo.tblComputers LEFT OUTER JOIN
dbo.tblComputersystem ON dbo.tblComputers.Computername = dbo.tblComputersystem.Computername LEFT OUTER JOIN
dbo.web30ProcessorCapacity ON dbo.tblComputers.Computername = dbo.web30ProcessorCapacity.Computername 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.tblOperatingsystem.Caption = @comp)
ORDER BY dbo.tblComputers.Computername

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-11-2008 01:11 AM
FYI: If you click on any of the OSes in the right column from digital dashboard, you will see its still showing KB instead of MB for memory...
The fix worked for the view that shows all computers in the domain, but not for these views...
The fix worked for the view that shows all computers in the domain, but not for these views...

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-05-2008 10:20 PM
Thanks - I tried searching the forum but "kb" comes up lots of times. No panic about a fix - I don't think anyone will get mixed up 🙂

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-05-2008 10:18 PM
The problem has already been reported, it will be fixed in the next release.
if you want to fix this problem, open lsmanage, go to database scripts, load the attached script, execute
if you want to fix this problem, open lsmanage, go to database scripts, load the attached script, execute
