2009-05-11 3 views
1

に私はのPerformancePointスコアカードへのAnalysis ServicesからKPIをインポートしようとしている、と私はとき、ダッシュボードデザイナーでエラーが発生します:2008 KPIの分析サービスのインポートのPerformancePointスコアカード

An unknown error has occurred. If the problem persists contact an administrator. There may be additional information in the server application event log.

私が調べるとイベントログ、私は次の例外を見つける:

System.IO.FileNotFoundException: Could not load file or assembly 'Microsoft.AnalysisServices, Version=9.0.242.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91' or one of its dependencies. The system cannot find the file specified. 
File name: 'Microsoft.AnalysisServices, Version=9.0.242.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91' 
    at Microsoft.PerformancePoint.Scorecards.Server.ImportExportHelper.GetImportableAsKpis(IBpm pmService, DataSource asDataSource) 
    at Microsoft.PerformancePoint.Scorecards.Server.PmServer.GetImportableAsKpis(DataSource dataSource) 

を私には、Microsoft ADOMD.NETの再インストールを推奨していますが、サーバがすでに製品の新しいバージョン(サーバを持っているので、そのためのインストーラが実行されませんthis threadを発見しました走っているMicrosoft.AnalysisServices.AdomdClient.dllバージョン9.0.3042.0を含むSQL Server Analysis Services 2008)

誰かが自分でDLLを見つけて手動でGACにインストールすることはできません。

答えて

0

SQL Server 2005 Feature PackのSQLServer2005_ASOLEDB9ファイルが必要です。それがうまく動作しない場合は、既存の2005年のインストールからDLLを取得して使用するだけで済みます。

0

SQLServer2005_ASOLEDB9をインストールしました。それでも動作しません。私の問題は、あるデータベースからKPIをインポートできなかったことです。私は残りのデータベースからkpiをインポートすることができます同じサーバーで。

0

http://macraem.wordpress.com/2010/08/25/issues-importing-ssas-2008-kpis-into-performancepoint-2007/

In .NET we can redirect the assembly bindings in the web.config. I added the following to the Web.Config file for the PPS Monitoring WebService which Dashboard Designer uses to connect to SSAS:

<runtime> <assemblyBinding xmlns=”urn:schemas-microsoft-com:asm.v1″> <dependentAssembly> <assemblyIdentity name=”Microsoft.AnalysisServices” publicKeyToken=”89845dcd8080cc91″ culture=”neutral” /> <bindingRedirect oldVersion=”9.0.242.0″ newVersion=”10.0.0.0″/>
</dependentAssembly> </assemblyBinding> </runtime>

関連する問題