
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-16-2011 01:53 AM
Can someone point me to where in the tables I could find the highlighted info in the pic provided? Im trying to generate a report with a bunch of RAM info, but the big one I am missing is what type of RAM we need to order for adding in.
Image showing "MemoryName"
Image showing "MemoryName"
Labels:
- Labels:
-
Archive
1 REPLY 1

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-24-2011 01:34 PM
Select tblComputers.Computername, tblComputers.ComputerUnique,
tblComputers.Domain, TsysMemorytypes.MemoryName, tblPhysicalMemory.BankLabel,
tblPhysicalMemory.Capacity, tblPhysicalMemory.DataWidth,
tblPhysicalMemory.DeviceLocator
From tblComputers Inner Join
tblPhysicalMemory On tblComputers.Computername =
tblPhysicalMemory.Computername Inner Join
TsysMemorytypes On TsysMemorytypes.Memorytype = tblPhysicalMemory.MemoryType
