How do you find out if a SQL Server 2012 installation has Analysis Services Tabular Mode or Multidimensional Mode installed?
2
votes
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
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