SQL Server Developer Center > SQL Server Forums > SQL Server Analysis Services > Can you tell me which SQL server edition and version is 9.00.1399.00?
Ask a questionAsk a question
 

AnswerCan you tell me which SQL server edition and version is 9.00.1399.00?

Answers

  • Thursday, October 08, 2009 5:29 PMThomas IvarssonMVP, ModeratorUsers MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     Answer
    RTM means that it is the first version released to market after a beta or CTP program. It has nothing to do with the enterprise version.

    HTH
    Thomas Ivarsson
    • Marked As Answer byArchana_tn Monday, October 12, 2009 8:58 AM
    •  
  • Sunday, October 11, 2009 11:25 PMDarren GosbellMVP, ModeratorUsers MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     Answer
    I think Thomas is right that 1399 is the RTM (ie. no services packs) version.

    In order to get the Edition of SSAS (standard, enterprise or developer) you could either run the following Powershell script (you may have to change the server name to something other than localhost if you are not on the server console)

      [System.Reflection.Assembly]::LoadWithPartialName("Microsoft.AnalysisServices") > $null
      $svr = new-object([Microsoft.AnalysisServices.Server])
      $svr.Connect("localhost")
      $svr.Edition

    or you could run the following XMLA from Management Studio (then just search for the word "Edition" in the resultset). You may have to tidy up the XMLA - the forum makes a bit of a mess of the formatting

    <

     

    Discover
    xmlns="urn:schemas-microsoft-com:xml-analysis">

    <

    RequestType>DISCOVER_XML_METADATA</RequestType>

    <

    Restrictions>

    <

    RestrictionList>

    <

    ObjectExpansion>ObjectProperties</ObjectExpansion>

    </

    RestrictionList>

    </

    Restrictions>

    <

    Properties>

    <

    PropertyList>

    </

    PropertyList>

    </

    Properties>

    </

    Discover>
    http://geekswithblogs.net/darrengosbell - please mark correct answers

All Replies

  • Thursday, October 08, 2009 5:12 PMThomas IvarssonMVP, ModeratorUsers MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
    It is probably the RTM version of SQL Server 2005, released to manufacturing, which means that no service packs are applied.

    HTH
    Thomas Ivarsson
  • Thursday, October 08, 2009 5:16 PMArchana_tn Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
    Thanks Thomas.RTM means it is enterprise Edition,right?..Could you please tell me where can we get the Installtion and Configutration guide for Enterprise-RTM edition?...Thanks in advance..
  • Thursday, October 08, 2009 5:29 PMThomas IvarssonMVP, ModeratorUsers MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     Answer
    RTM means that it is the first version released to market after a beta or CTP program. It has nothing to do with the enterprise version.

    HTH
    Thomas Ivarsson
    • Marked As Answer byArchana_tn Monday, October 12, 2009 8:58 AM
    •  
  • Sunday, October 11, 2009 11:25 PMDarren GosbellMVP, ModeratorUsers MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     Answer
    I think Thomas is right that 1399 is the RTM (ie. no services packs) version.

    In order to get the Edition of SSAS (standard, enterprise or developer) you could either run the following Powershell script (you may have to change the server name to something other than localhost if you are not on the server console)

      [System.Reflection.Assembly]::LoadWithPartialName("Microsoft.AnalysisServices") > $null
      $svr = new-object([Microsoft.AnalysisServices.Server])
      $svr.Connect("localhost")
      $svr.Edition

    or you could run the following XMLA from Management Studio (then just search for the word "Edition" in the resultset). You may have to tidy up the XMLA - the forum makes a bit of a mess of the formatting

    <

     

    Discover
    xmlns="urn:schemas-microsoft-com:xml-analysis">

    <

    RequestType>DISCOVER_XML_METADATA</RequestType>

    <

    Restrictions>

    <

    RestrictionList>

    <

    ObjectExpansion>ObjectProperties</ObjectExpansion>

    </

    RestrictionList>

    </

    Restrictions>

    <

    Properties>

    <

    PropertyList>

    </

    PropertyList>

    </

    Properties>

    </

    Discover>
    http://geekswithblogs.net/darrengosbell - please mark correct answers
  • Monday, October 12, 2009 10:01 AMAbdur Rauof Thameem Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
    Also you can query "Select @@Version" to check the edition.

    Thanks,
    Thameem
  • Monday, October 12, 2009 11:05 AMDarren GosbellMVP, ModeratorUsers MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
    Also you can query "Select @@Version" to check the edition.

    Thanks,
    Thameem

    That only shows you the version for the relational engine and you may not always have that installed on the same machine as SSAS.

    However another method is to right click on the server in Object Explorer in Management Studio and choose Reports - Standard Reports - General


    http://geekswithblogs.net/darrengosbell - please mark correct answers
  • Monday, October 12, 2009 11:24 AMBorn SQL Server Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
    Hi ,
    Please check with this link
    http://www.sqlservercentral.com/articles/Administration/2960/

    it says its RTM with NO SP
    regards
    BornSQL