Query to show MS updates including update name, OS applicable...

Hi guys, does anyone have a SQL query which will provide the following results?
Article ID
Update Name
Applicable to which OS
Bulletin ID
Classification (critical, Rollup, etc.)
Whether or not it's expired
Whether or not it's enabled
CI ID
I can get most of these by using the below query, but how I do I get the classification and which OS they are applicable?
select CI_ID, IsEnabled, IsExpired, IsSuperseded, Title, Description FROM v_UpdateInfo
Is there another table I should be using/referencing?

Hello,
Software Updates Views in Configuration Manager
should be helpful to you. If SUSDB is installed on SQL server instead of windows internal database, you may also try
WSUS views.
Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

Similar Messages

  • Unable to install the security patches KB2677070 in Windows Server 2008 R2 SP1 (The update is not applicable to your computer)

    Dear everyone, 
    We are trying to install the below KB in our windows server 2008 R2 SP1, however, it will show "The update is not applicable to your computer". There is no problems to install the other patches except this one. Do anyone have idea about it?
    http://support.microsoft.com/kb/2677070
    Thanks,
    Users

    Hi,
    According to this KB article, there are many exceptions where this KB is not applicable.
    Please perform the following steps:
    Expand the “For all supported…” title in the File Information section in the KB article.
    Find Crypt32.dll.mui files on your machine.
    Then compare the file version, file size, data and time with the ones listed in the KB article.
    If there is a match, then this KB doesn’t apply to your machine, which is by design.
    Hope this helps.
    Best Regards,
    Amy Wang

  • I cannot open pages on my MacBookPro. I get a message to update it. In my software update in the apple menu drop down, it shows no updates at this time. I have iWork '09.

    I cannot open pages on my MacBookPro. I get a message to update it. In my software update in the apple menu drop down, it shows no updates at this time. I have iWork '09.

    You have 2 versions of Pages on your Mac.
    Pages 5 is in your Applications folder.
    Pages '09/'08 is in your Applications/iWork folder.
    You are alternately opening the wrong versions.
    Pages '09/'08 can not open Pages 5 files and you will get the warning that you need a newer version.
    Pages 5.01 can not open Pages 5.1 files and you will get the warning that you need a newer version.
    Pages 5 can open Pages '09 files but may damage/alter them. It can not open Pages '08 files at all.
    Once opened and saved in Pages 5 the Pages '09 files can not be opened in Pages '09.
    Once opened and saved in Pages 5.1 files can not be opened in Pages 5.
    Anything that is saved to iCloud is also converted to Pages 5 files.
    All Pages files no matter what version and incompatibility have the same extension .pages.
    Pages 5 files are now only compatible with themselves on a very restricted set of hardware, software and Operating Systems and will not transfer correctly on any other server software than iCloud.
    Apple has removed over 100 features from Pages 5 and added many bugs, including files that refuse rto open:
    http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=22&sid=3527487677f0c 6fa05b6297cd00f8eb9&mforum=iworktipsntrick

  • Software Updates app not showing new updates

    Hi,
    The Software Updates app is not showing new updates. I always get "No Updates Available".  For instance, I run 10.8.3 but 10.8.4 is not showing up. I run iTunes 10.0.2 and when I open it  I get messages asking me to update to newer versions but they are never showing up in the Software Updates app. I played with the Software Updates app preference files but it did not change anything. Any idea on why the Software Updates app is not working properly.
    Thanks

    Read this whole message before doing anything.
    Back up all data. Quit the App Store application if it’s running. Test after each of the following steps until the problem is resolved.
    Step 1
    Triple-click the line below to select it:
    /Library/Updates
    Right-click or control-click the highlighted line and select
    Services ▹ Reveal
    from the contextual menu. A Finder window should open with a folder selected. Move the contents of the selected folder to the Trash. You may be prompted for your administrator password.
    Step 2
    Do as in Step 1 with this line:
    /Library/Preferences/com.apple.SoftwareUpdate.plist
    If there's no change, quit the App Store and restore the file you moved from your backup, overwriting the one that may have been created in its place. Otherwise, recreate your settings in the Software Update preference pane.
    Step 3
    Hold down the option key and select
    Go ▹ Library
    from the Finder menu bar. Move the following items from the Library folder to the Trash (some may not exist):
    Caches/com.apple.SoftwareUpdate
    Preferences/com.apple.SoftwareUpdate.plist
    Preferences/ByHost/com.apple.SoftwareUpdate.*.plist
    Saved Application State/com.apple.SoftwareUpdate.savedState
    Here, "*" stand for a long string of letters, numbers, and dashes.
    Step 4
    If you still have problems, quit the App Store again.
    Triple-click anywhere in the line below to select it:
    open $TMPDIR../C
    Copy the selected text to the Clipboard (command-C).
    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window (command-V). A folder should open. Inside that folder, there may be a subfolder with the name "com.apple.SoftwareUpdate". If so, delete it. You can then quit Terminal.

  • Need a query if it matched update as an alias else leave as it is?

    Master Table
    Party Name PartyID
    A 112
    B 113
    E 114
    F 115
    Duplicate Table
    Party Name PartyID
    A 112
    B 113
    C 114
    D 115
    Updated Master Table
    PartyName PartyID
    Aas Alias 112
    B as Alias 113
    E 114
    F 115
    I have an insert statement INSERT INTO [dbo].[PartyName]
                                  ([PartyID],
                                   [PartyFunctionTypeID],
                                   [Surname],
                                   [FirstName],
                                   [MiddleName],
                                   [MiddleName2],
                                   [DisplayName],
                                   [Nickname],
                                   [Prefix],
                                   [Suffix],
                                   [Initials],
                                   [StartDate],
                                   [EndDate],
                                   [CreatedBy],
                                   [CreatedDate],
                                   [ModifiedBy],
                                   [ModifiedDate])
                      SELECT DISTINCT @masterPartyId,
                                      [PartyFunctionTypeID]
                                      [Surname],
                                      [FirstName],
                                      [MiddleName],
                                      [MiddleName2],
                                      [DisplayName],
                                      [Nickname],
                                      [Prefix],
                                      [Suffix],
                                      [Initials],
                                      [StartDate],
                                      [EndDate],
                                      [CreatedBy],
                                      [CreatedDate],
                                      @modifiedBy,
                                      GETDATE()
                        FROM partyname   where---------------
    I need statement after where clause which can update display name only exactly I mentioned in above table for this query I am working only on display name and partyID

    try,
    create table MasterTable (PartyName varchar(10),PartyID int)
    insert into MasterTable values('A', 112),('B', 113),('E', 114 ),('F', 115 )
    create table DuplicateTable (PartyName varchar(10),PartyID int)
    insert into DuplicateTable values('A', 112),('B', 113),('C', 114 ),('D', 115 )
    update M set PartyName=M.PartyName+' as alias' from
    MasterTable M
    Inner join DuplicateTable D
    on M.PartyID=D.PartyID
    where M.PartyName=D.PartyName
    Please use Marked as Answer if my post solved your problem and use
    Vote As Helpful if a post was useful.

  • Uninstall patch update by referring to the full patch update name

    I'm able now to uninstall a patch based from the KB number by using below command line. But recently, I had encountered an issue with one of the IE 9 patch update. The solution was to uninstall only the IE9 update but unfortunately, all of the
    other updates for IE 10, IE 11 have also the same KB number with the IE9 update.
    I cant use below command line and target to all machines as it will also uninstall the IE10 and IE11 updates. As a workaround, I queried only IE9 machines in the target collection. Is there a way that I can use below command and specify the full update name
    instead of just the KB number?
    C:\Windows\System32\wusa.exe /uninstall /kb:2781197 /quiet /norestart

    you can, as Peter says, and as per
    https://support.microsoft.com/kb/934307
    But... that's not very efficient to send the wrong patch package to machines?
    Why not create a query-based collection and only target that?
    You could use a DCM baseline, etc.
    Or you could use appmodel requirements.
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • Apps icon shows 3 update, when I tap on update it is blank page.

    Apps icon shows 3 update, when I tap on update it is blank page. Already reboot my iPad and still the same. Please help. I know I can always restore it, but I don't want to loose everything I worked on. Help please:(

    Hi, Sly101.
    I would recommend closing any open applications in multitasking and restarting the device.  If unfamiliar with multitasking, I have included a screenshot on how to process an application close.  Test the results after processing these steps.
    If the issue persists, see the section labeled Troubleshooting on an iPhone, iPad, or iPod touch in the article below. 
    Can't connect to the iTunes Store
    http://support.apple.com/kb/ts1368
    Cheers,
    Jason H. 

  • HT1222 I need to update my husbands iPad but it doesn't show a update but he has ios4

    I need to update my husbands iPad but it doesn't show a update but he has ios4

    If you mean that it doesn't show the Settings > General > Software Update option then that only appears when you have iOS 5+ installed, with iOS 4 you will need to do the update via your computer's iTunes.
    Connect the iPad to your computer's iTunes and copy any purchases off the iPad to your computer via File > Transfer Purchases. You may also want to copy photos and any important documents off the iPad as well e.g. via the file sharing section at the bottom of the device's apps tab when connected to iTunes, via wifi, email, dropbox etc - they should be included in the backup, but it's best to have a copy of them outside of the backup just in case. You can then force a backup of the iPad by right-clicking the iPad 'Device' on the left-hand side of iTunes and selecting 'Backup'.
    Then start the update by selecting the iPad on the left-hand side of iTunes, and on the Summary tab on the right-hand side clicking the Check For Updates button
    Updating to iOS 5+ : http://support.apple.com/kb/HT4972
    Your iPad should be updated to iOS 6.0.1 (which is the only version that is 'signed' by Apple), so you will lose the built-in YouTube app and the Maps app will change - but google have app versions in the store.

  • Iphone 4, App store showing 2 updates, but when I go into the app store it says all apps are up to date.

    I have an Iphone 4, IOS version 6.1.3. 
    My app store badge is showing 2 updates, but when I go into my app store, it tells me all apps are up to date.   I've tried several of the fixes that others have who have had simular issues,  but so far, I havn't seen anyone who is having the issue of the app store saying the apps are up to date. (Most others are unable to load the app store or its just blank.)
    Sometimes when I go into the app store the notification will go away,  but its only temporary as it will come back again later.   I've gone through my purchased list,  and there are none that have update beside them.  There are some that have a cloud,  but all of those are ones I have deleted and do not wan
    Unlike most users, I do not have a ton of apps.  Probably less then 30, some of those are ones it came with.  If this was a computer, I would think that there is something in the registry that is left over from one of the apps I deleted and its triggering the app store.  IDK if it works like that on Iphones as I'm not really an expect. This is the only apple device I've ever owned and I got it used from a friend about 6 months ago. (It was cleared and restored before I bought it from her)
    Everthing else seems to be working fine for the most part, except that it has been acting kinda slow and sometimes the browser and stuff doesn't load right the first try. (I only use wifi on it, as I don't use a cellular service with this Iphone)

    ATtempt to power off your device and power it back on, if that doesn't work reset all settings should resolve it for you

  • Query Not reflected with Updated Data

    Dear Experts,
    I am facing a Problem in query data updation.    Data has been daily updating in infoprovider successfully ,But when user run query through Bex he is always shown old data.  Then I go to RSRT and generate the query and data got updated.
    Every Time for new data updation I need to Generate the query.
    What could be reason for this.  Is this related to cache data ?
    Any Advise .
    Thanks in Advance.

    Dear Michael,
    This problem is coming only for one Multiprovider.   Running this program would affect all other queries also . This will Delay the reporting.
    Any other reason why query is reflected with old data Though infoprovide is loaded with new data.

  • I have an iPad 1 that is currently showing software updated at version 5.1.1.  Is it possible to update to iOS version 7 on this device?  My goal is to get Garage Band on this device and the app store is telling me I need iOS version 7.

    I have an iPad 1 that is currently showing software updated at version 5.1.1.  Is it possible to update to iOS version 7 on this device?  My goal is to get Garage Band on this device and the app store is telling me I need iOS version 7.

    Hi,
    If you really need to upgrade you can save a bit of money and get an older version than the ipad Air.
    First, you can sell your ipad 1 to places like gazelle.com, cashforyourmac.com, sellyour mac.com, or many others out there. The sites I listed give you cash. At this point gazelle.com is giving $70.00 for any ipad 1 in 'good' condition. And cashforyourmac will give you $25.00 over what gazelle.com or sellyourmac.com offers you. Shipping is free.
    Then, with that money, go the the Apple online certified refurbished store. As an example, a new 64gb Air costs $699.00. A refurbed 4th gen 64gb costs $529.00 and a 3rd gen 64gb costs $499.00. Personally, I'd skip the 3rd gen. So if you buy a 4th gen 64gb at $529.00 minus what you can get from a sale to above, you can get an ipad 4 64gb for just over $430.00, a savings of savings of about $270.00. (A new 32gb Air is $599.00, a 4th gen 32gb is $449.00, and a 3rd gen 32gb is not on the site right now.) Google it and check if you can get better offers anywhere else. But getting one from the Apple refurb store gives you an essentially new ipad and using the above sites, you're not locked in with a particular site which will give you a gift card and restrict you to their store/site.
    Each Apple refurbished ipad (any version) comes with a new front and back cover, a brand new battery, same return policy, and a full one year warranty with 90 days of phone support. Each comes in a white box like a new ipad with the wall charger and usb cable. The only difference is that it says in small print on the bottom of the box that it is Apple certified refurbished. Also, if you buy refurbs, be sure to check the store many times a day. They can come and go quickly, so when you see what you want, buy it right away. Shipping is free and pretty fast. (We bought two a year and a half ago and they have been great!)
    Hope this helps.

  • TS3274 My App Store shows 3 updates but when I go to it the screen is blank. It will not give me the option to update all or one at a time, it doesn't show the apps at all.

    My App Store shows 3 updates but when I go to it the screen is blank. It will not give me the option to update all or one at a time, it doesn't show the apps at all.

    Many people are having this problem for the last couple of days. This is a problem that Apple has to fix. If you look around the forum, you will see many, many discusssions about this and they have been going on for a few days.
    According to Fly150 in another discussion, this is a workaround - for the time being.
    If you want to update the Apps while waiting for Apple to fix Updates:
    1. Go to App Store
    2. Select Purchased
    3. Select All
    4. Scroll down to find the Apps showing update
    5. Select update on the Apps
    This should update the Apps and get rid of the update count in App Store.

  • Creative Cloud shows 4 updates but is stuck

    Hi
    Creative Cloud shows 4 updates but is stuck and nothing happens when update is clicked, nor you can agree to the new agreement, nor you can quit and restart the app (and why should you). see screen shot.
    Cheers,
    Mic

    Sign in, activation, or connection errors | CS5.5 and later
    Mylenium

  • HT1222 There is error showing while updating my iPad 2 software to IOS 6.1. Please suggest me what should I do?

    There is error showing while updating my iPad 2 software to IOS 6.1. Please suggest me what should I do?

    You need to tell exactly what is happening. What does the error say?

  • My 4s wa showing update to iso7 so I updated and it kept failing now its not showing an update at all and saying my iPhone 4S is up todate on USO 6.1.3 help???

    My 4s wa showing update to iso7 so I updated and it kept failing now its not showing an update at all and saying my iPhone 4S is up todate on USO 6.1.3 help???

    Now it's not showing any update on my phone Iv turne it off and bk on again but still saying software is up to date on 6.1.3

Maybe you are looking for

  • Migration set up two accounts. How do I share them?

    Hello, Just bought my first Mac. I used migration assistant to transfer things. First I transferred all my folders, files, and photos. Then later, overnight, I transferred all my music. It appears that Migration Assistant has now set up two "users" f

  • Problems opening documents with Adobe Reader XI

    I tried to open a file from my email account. I got a message from Adobe Reader XI that it could not open ecause it is either not a supported file type or because the file has been damaged (for example, it was sent as an email attachment and wasn't c

  • Looking for suggestions to create a graphical user interface. Swing?

    Hi there, I am considering developing this as a side-project, therefore wish to know how much work will be involved (ie. if I have time to complete it). The situation. I have an online game that I play. It allows access to data using text files,that

  • How to Display WBS's with Zero values in a report created by CJE2

    Hi All, I have created a report using CJE1 (Report painter). When I execute the report, it only shows WBS that have values. How do I display WBS elements that do NOT have values? i.e. display items with zero values. I'm certain there is a setting eit

  • Apple Audio Filters in Final Cut Pro

    I'm posting this question here because I didn't receive any responses in the Final Cut Pro message area, and I thought given the nature of the questions, audiofiles that read this area might have an answer. In Final Cut Pro there are two folders of a