/build/static/layout/Breadcrumb_cap_w.png

Patches Missing by Machine

Hello,

This report gives me missing OS Patches ordered by Machine. Currently, it will include inactive patches in the output. I would like to further refine this report to only give active patches. Can anyone help me out? I apologize in advance, I am new with MySQL.

Thanks,
Nicole

SELECT PP.TITLE AS DISPLAY_NAME,
M.NAME AS ComputerName
FROM PATCHLINK_MACHINE_STATUS MS
JOIN KBSYS.PATCHLINK_PATCH PP ON PP.UID = MS.PATCHUID
JOIN MACHINE M ON M.ID = MS.MACHINE_ID
WHERE MS.STATUS = 'NOTPATCHED'
and is_app=0 /*Only select Operating System Patches*/
and Vendor like "%Microsoft%" /*Select patches from only Microsoft as Vendor*/
and identifier!="2k3sp2" /*Exclude Service Pack 2 for Server 2003*/
and identifier!="Win2K8SP2" /*Exclude Service Pack 2 for Server 2008*/
ORDER BY M.NAME

0 Comments   [ + ] Show comments

Answers (2)

Posted by: dchristian 13 years ago
Red Belt
0
Hey Nicole,

Try this
SELECT PP.TITLE AS DISPLAY_NAME,
M.NAME AS COMPUTERNAME
FROM PATCHLINK_MACHINE_STATUS MS
JOIN KBSYS.PATCHLINK_PATCH PP
ON PP.UID = MS.PATCHUID
JOIN MACHINE M
ON M.ID = MS.MACHINE_ID
JOIN PATCHLINK_PATCH_STATUS PS
ON PP.UID = PS.PATCHUID
WHERE MS.STATUS = 'NOTPATCHED'
AND IS_APP = 0 /*Only select Operating System Patches*/
AND VENDOR LIKE "%Microsoft%"
/*Select patches from only Microsoft as Vendor*/
AND IDENTIFIER!="2k3sp2" /*Exclude Service Pack 2 for Server 2003*/
AND IDENTIFIER!="Win2K8SP2" /*Exclude Service Pack 2 for Server 2008*/
AND PS.STATUS = 0 /* 0=ACTIVE, 1=INACTIVE, 4=DISABLED */
ORDER BY M.NAME
Posted by: NicoleK 13 years ago
Senior Yellow Belt
0
Hi David,

Yes, it did work. Thank you so much for your time. It not only helps me in the learning process but I can also use the report in the meantime.

Nicole
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.

Don't be a Stranger!

Sign up today to participate, stay informed, earn points and establish a reputation for yourself!

Sign up! or login

View more:

Share

 
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