- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-08-2024 12:06 PM
Hi,
I'm trying to join the cmdb_sam_sw_install and cmdb_ci_computer tables, as I need to consult the licenses assigned to the users' equipment. But the way I did it, it's not bringing any information.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-08-2024 12:28 PM
You need to join on like fields - not a sys_id and a string display name. It sounds like installed_on is the SAM column you want:
pc_sys_id = sam_installed_on
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-08-2024 12:28 PM
You need to join on like fields - not a sys_id and a string display name. It sounds like installed_on is the SAM column you want:
pc_sys_id = sam_installed_on
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-08-2024 12:35 PM
Tks Brad!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2024 04:18 AM
You are welcome!