| |
| ||||||
Which Edition is my Analysis Services Server?This is a discussion on Which Edition is my Analysis Services Server? within the Random Procrastination forums, part of the CORTEX Blogs category; There was a question the other day on the MSDN SSAS forum asking how to find out the Edition of SSAS which is running on a given server. The answer ... |
![]() |
| | LinkBack | Thread Tools | Search this Thread | Display Modes |
| | #1 |
| Member Join Date: Jun 2009
Posts: 47
![]() | There was a question the other day on the MSDN SSAS forum asking how to find out the Edition of SSAS which is running on a given server. The answer to this question could be either Standard, Enterprise or Developer. The Object Explorer in Management Studio displays the current version next to the server name, but not the Edition. Now at a basic level I know that this is stored as a property of the server, so you could run a DISCOVER_XML_METADATA command like the following. DISCOVER_XML_METADATAObjectProperties* Which returns not just the Edition, but a lot of other interesting information. * Of course not everyone likes reading XML, so another approach would be to run a short powershell script, either using AMO directly… [System.Reflection.Assembly]::LoadWithPartialName("Microsoft.AnalysisServices" ) > $null $svr = new-object([Microsoft.AnalysisServices.Server]) $svr.Connect("localhost") $svr.Edition Or using the powerSSAS snapin (to do the same thing with a lot less typing). add-pssnapin powerSSAS $svr = get-ASServer localhost $svr.Edition Or if you really want to be really boring you could right click on your server from the Object Explorer in Management Studio, choose Reports – Standard Reports – General, but that would be way too simple. :) ![]() Get More from the original blog... |
| | |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Book Review - Analysis Services 2008 Unleashed | Darren Gosbell | Random Procrastination | 0 | 5th October 2009 05:22 AM |
| Handling Recursive Hierarchies in SQL Server | James Beresford | BI Monkey | 0 | 18th September 2009 08:02 PM |
| SQL Server Integration Services 2008 64 Bit frustrations | Leigh Kennedy | I SQL | 1 | 17th September 2009 11:34 AM |
| An Analysis Services 2008 nugget | Darren Gosbell | Random Procrastination | 0 | 23rd June 2009 08:30 PM |
| Workshop: SQL Server Analysis Services 2008 Development | glove | TM1 Australian User Group | 0 | 13th February 2009 10:25 AM |
| | |
| | |