/build/static/layout/Breadcrumb_cap_w.png

I am looking for sql script for k1000 report

I am looking for sql script for a KACE1000 report that will give me a listing of ALL software in inventory and then broken down by machine name and IP

the results would look something like

Software       Computer name       IP address

Chrome         123                         xxx.xxx.xxx.xxx

                      124                         xxx.xxx.xxx.xxx

Firefox           125                         xxx.xxx.xxx.xxx



0 Comments   [ + ] Show comments

Answers (1)

Posted by: aragorn.2003 9 years ago
Red Belt
1
Did you mean this one?

select s.DISPLAY_NAME, s.DISPLAY_VERSION, m.NAME, m.IP 
  from SOFTWARE as s, MACHINE as m, MACHINE_SOFTWARE_JT as ms
 where s.ID = ms.SOFTWARE_ID
   and m.ID = ms.MACHINE_ID

But in our case there are a lot of rows found. Maybe you have to filter this, eg. hide Windows Updates. Add the following line to the where clause.

   and s.DISPLAY_NAME not like '%Update%'
 
This website uses cookies. By continuing to use this site and/or clicking the "Accept" button you are providing consent Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our websites or when you do business with us. For more information about our Privacy Policy and our data protection efforts, please visit GDPR-HQ