4

我的 Windows 7 笔记本电脑中安装了 SQL Server 2012 评估版。我正在尝试一个 SSAS 项目。数据源是同一台机器上的一个实例中的数据库。

创建数据源视图后,我立即收到以下错误。

Error:

TITLE: Microsoft Visual Studio
------------------------------

An error prevented the view from loading.

------------------------------
ADDITIONAL INFORMATION:

The specified module could not be found. (Exception from HRESULT: 0x8007007E) (System.Windows.Forms)

------------------------------
BUTTONS:

OK
------------------------------

在此处输入图像描述

Error in detail:
===================================

An error prevented the view from loading. (Microsoft Visual Studio)

===================================

The specified module could not be found. (Exception from HRESULT: 0x8007007E) (System.Windows.Forms)

------------------------------
Program Location:

   at System.Windows.Forms.UnsafeNativeMethods.CoCreateInstance(Guid& clsid, Object punkOuter, Int32 context, Guid& iid)
   at System.Windows.Forms.AxHost.CreateWithLicense(String license, Guid clsid)
   at System.Windows.Forms.AxHost.CreateInstanceCore(Guid clsid)
   at System.Windows.Forms.AxHost.CreateInstance()
   at System.Windows.Forms.AxHost.GetOcxCreate()
   at System.Windows.Forms.AxHost.TransitionUpTo(Int32 state)
   at System.Windows.Forms.AxHost.CreateHandle()
   at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
   at System.Windows.Forms.Control.CreateControl()
   at Microsoft.DataWarehouse.Design.ComponentDiagram.CreateDdsView(Control parentControl)
   at Microsoft.AnalysisServices.Design.DataSourceDesignerView..ctor(DataSourceDesigner designer, DataSourceDiagram diagram, IComponent diagramOwnerComponent)
   at Microsoft.AnalysisServices.Design.DataSourceDesignerView..ctor(DataSourceDesigner designer)
   at Microsoft.AnalysisServices.Design.DataSourceDesigner.CreateDataSourceDesignerView(VsStyleToolBar pageViewToolBar)
   at Microsoft.DataWarehouse.Design.EditorWindow.EnsureViewIsLoaded(EditorView view)

任何想法?我在谷歌搜索。我看到了类似的错误和反馈。但他们中的大多数处理 SQL 2008/2005 版本问题等。

这里我的 SSAS 设计器和 SQL 服务器源是 2012 年。在阅读了许多令人困惑的博客之后,在 stack-over flow 中询问。

提前致谢。

4

1 回答 1

1

这很可能是因为有人手动修改了底层 XMLA 代码,而 SSAS 无法再正确解析它。

如果多维数据集正常运行,您可以删除您的 Visual Studio 项目并使用现有多维数据集创建一个新项目。这可能是处理此问题的最简单方法,除非您已经进行了重大更改(即使该问题与 XMLA 解析没有任何关系)

于 2014-10-04T04:25:26.343 回答