标签:
需要在所有安装sharepoint服务器里面安装ADOMD组件
\Program Files\Microsoft Office Servers\15.0\WebServices\PpsMonitoringServer
Inside web.config you need to find the lines that read:
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Microsoft.AnalysisServices.AdomdClient"
publicKeyToken="89845dcd8080cc91" culture="neutral" />
<bindingRedirect oldVersion="9.0.0.0" newVersion="10.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
Inside the bindingredirect key, change the line from:
oldVersion="9.0.0.0" newVersion="10.0.0.0"
To read:
OldVersion="10.0.0.0" newVersion="11.0.0.0"
And you should be all set! This change allows SharePoint 2013 to use the SQL 2012 ADOMD.11 libraries; the original line substitutes the ADOMD 10 libraries is version 9 is called.
can not connect cube in performancce dashboard
标签:
原文地址:http://www.cnblogs.com/hqbird/p/5727898.html