GarthMJ Posted April 26, 2013 Report post Posted April 26, 2013 You can run a query to get this info. select C.CollectionID, C.Name, C.Comment from dbo.v_Collection C join dbo.v_FullCollectionMembership FCM on C.CollectionID = FCM.CollectionID Where FCM.Name = 'ES-06' 1 Quote Share this post Link to post Share on other sites More sharing options...
AmrelMahdy Posted April 27, 2013 Report post Posted April 27, 2013 @ Garth, Will this Query Get me All Collections that the Computer is member of it ? Quote Share this post Link to post Share on other sites More sharing options...
GarthMJ Posted April 27, 2013 Report post Posted April 27, 2013 Yes. Quote Share this post Link to post Share on other sites More sharing options...
keilamym Posted October 22, 2013 Report post Posted October 22, 2013 Garth, How can I modify the 'ES-06' to a prompt for a machine name? Also do you have any good links on converting my 2007 reports to the 2012 ssrs format? Thanks in advance Quote Share this post Link to post Share on other sites More sharing options...
GarthMJ Posted October 22, 2013 Report post Posted October 22, 2013 Replace 'ES-06' with @PC This will create a prompt for the report. If you want to make it fancy you can then add a drop down or browse list for the PC name. The easiest way to convert your CM07 to CM12 report is to make sure that you have already converted them from ASP to SSRS then you can upload the same converted reports to CM12. Other than that, I your recommend rebuilding them and filtering out all the old junky reports. 1 Quote Share this post Link to post Share on other sites More sharing options...
keilamym Posted October 22, 2013 Report post Posted October 22, 2013 Thanks Garth... I'll convert them first... Quote Share this post Link to post Share on other sites More sharing options...
broon-scotland Posted October 8, 2015 Report post Posted October 8, 2015 Can anyone tell me how to do this for multiple devices? I have over 1000 devices and I need to know what collections they are all in. Is it possible to do with a report or PowerShell? Quote Share this post Link to post Share on other sites More sharing options...
GarthMJ Posted October 8, 2015 Report post Posted October 8, 2015 Yes this can be done as a report but without anymore details on what and how you are doing things. Quote Share this post Link to post Share on other sites More sharing options...
dsmonroe63 Posted May 3, 2016 Report post Posted May 3, 2016 Replace 'ES-06' with @PC This will create a prompt for the report. If you want to make it fancy you can then add a drop down or browse list for the PC name. The easiest way to convert your CM07 to CM12 report is to make sure that you have already converted them from ASP to SSRS then you can upload the same converted reports to CM12. Other than that, I your recommend rebuilding them and filtering out all the old junky reports. I'm wanting to create this report and let server owners search for their servers so they know what time their servers get patched. (Should they know this already? That's for another thread...) What do I need to put in my parameter to create that drop down menu so they can search? The query works great, I'm just not so great with Report Builder yet. Thanks! Quote Share this post Link to post Share on other sites More sharing options...
GarthMJ Posted May 8, 2016 Report post Posted May 8, 2016 The query works great, I'm just not so great with Report Builder yet. Thanks! If you are looking to get better writing reports, first I will tell you to stop using Report Builder and use SQL Server Data tools (SSDT) or Business Intelligence Development Studio (BIDS) instead. If you will be at MMS next week there are several presentation on writing reports. Lastly, if you are looking for a book on the subject then I would look at this one. :-) http://www.amazon.com/gp/offer-listing/0672337789 1 Quote Share this post Link to post Share on other sites More sharing options...