Report last user blank!!
Hi guys,
I am looking to run a report to identify all versions of Mapinfo pro on the network. I am looking to include product version, computer name and last user.
I used the syntax below and it pulled back everything except last user:
select S.DISPLAY_NAME as SOFTWARE_NAME,
S.DISPLAY_VERSION as VERSION,
M.NAME as MACHINE_NAME,
M.USER_FULLNAME as LAST_USER
FROM SOFTWARE S
left join MACHINE_SOFTWARE_JT MSJ on S.ID = MSJ.SOFTWARE_ID
left join MACHINE M on MSJ.MACHINE_ID = M.ID
where S.DISPLAY_NAME like 'Mapinfo prof%'
and not IS_PATCH
order by S.DISPLAY_NAME, S.DISPLAY_VERSION, M.NAME
Answers (2)
What version of agent do you have?
I've been using "M.USER" for my queries.
Comments:
-
Cheers that worked. - fitzsilver 12 years ago
-
I believe the latest version should have fixed this.
Release Notes
• 1738: The current logged-on user is not always detected. - dugullett 12 years ago
Have you seen this post
http://www.itninja.com/question/report-requests
Same issue has been already discussed by terabyte33 and dchristian