2
votes

How do you find out if a SQL Server 2012 installation has Analysis Services Tabular Mode or Multidimensional Mode installed?

3

3 Answers

2
votes

Barely worth an answer, but Determine the Server Mode of an Analysis Services Instance includes:

  • Server Icons in Object Explorer

    The easiest way to determine server mode is to connect to the server in SQL Server Management Studio and note the icon next to the server name in Object Explorer. The following illustration shows three instances of Analysis Services deployed in Multidimensional, Tabular, and PowerPivot modes

enter image description here

  • Viewing DeploymentMode Property in MSMDSRV.INI File

    Alternatively, you can check the DeploymentMode property in the msmdsrv.ini file that is included in every Analysis Services instance. The value of this property identifies the server mode. Valid values are 0 (Multidimensional), 1 (SharePoint), or 2 (Tabular).

1
votes
# the script is run on a host where SSAS 2012 installed
add-type -AssemblyName "Microsoft.AnalysisServices, Culture=Neutral, Version=11.0.0.0, PublicKeyToken=89845dcd8080cc91";

$s=new-object "Microsoft.AnalysisServices.Server";
$s.connect( '<your_SSAS_instance>' );
$s.ServerMode
0
votes

You have theses two details :

1 Select Analysis Services from the Feature Tree in Setup. Optionally, choose SQL Server Data Tools to include the tabular model designer in your installation. enter image description here

2 On the Analysis Services Configuration page, be sure to select Tabular Mode.

enter image description here