The Community is now in read-only mode to prepare for the launch of the new Flexera Community. During this time, you will be unable to register, log in, or access customer resources. Click here for more information.
Hi, we are trying to pull the below details from FNMS related to users and devices and any suggestions which DB and tables we need to query from Active inventory to get the below details.
Thanks
Oct 23, 2023 09:09 AM
Please try below query:
SELECT cca.ComputerName, cca.Manufacturer, cca.ModelNo, cca.SerialNo, cca.AssignedUserID, cu.UserName
FROM ComplianceComputerActive AS cca left JOIN
ComplianceUser AS cu ON cca.AssignedUserID = cu.ComplianceUserID
Oct 23, 2023 09:21 AM
Hi @ppyrzynski , thanks for the swift quick reply. Need the data from all computers and not only Active one's
Oct 25, 2023 01:22 AM - edited Oct 25, 2023 01:24 AM
Then:
SELECT
cc.ComputerName,
cc.Manufacturer,
cc.ModelNo,
cc.SerialNo,
cc.AssignedUserID,
cu.UserName
FROM ComplianceComputer AS cc left JOIN
ComplianceUser AS cu ON cc.AssignedUserID = cu.ComplianceUserID
Oct 25, 2023 01:56 AM