2009-05-11 3 views
1

나는의 PerformancePoint 성과 기록표에 분석 서비스에서 KPI를 가져하려고, 내가 이렇게하면 대시 보드 디자이너 오류가 발생합니다 :은 PerformancePoint 성과 기록표 2008 KPI의 분석 서비스를 가져 오기

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

나는 검사 내가 권장 this thread을 발견

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) 

마이크로 소프트 ADOMD.NET하지만 서버가 이미 제품의 최신 버전을 가지고 있기 때문에 실행되지 않습니다 그것을위한 설치 프로그램 (서버를 다시 설치 : 이벤트 로그, 나는 다음과 같은 예외를 찾을 수 달렸다 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>

관련 문제