what about this mysql command ?
SELECT
h.NAME as computername,
m.CAPACITY as ram_size,
m.TYPE as ram_vendor,
m.DESCRIPTION as ram_description,
m.SERIALNUMBER as ram_serial
FROM
hardware h
JOIN
memories m ON h.ID = m.HARDWARE_ID
yes i see there is no vendor
in wmic you can get this info from cmd with
wmic memorychip get devicelocator, capacity, speed, manufacturer, partnumber, serialnumber, memorytype
If there where the table manuafacturer of the memory in newer ocs-inventory versions it should work with this command, but i think this information is not inventoried and therefore not in the database
SELECT
h.NAME as computername,
m.CAPACITY as ram_size,
m.TYPE as ram_type,
m.DESCRIPTION as ram_description,
m.MANUFACTURER as ram_manufacturer
FROM
hardware h
JOIN
memories m ON h.ID = m.HARDWARE_ID