我为 pentaho 4.8 安装了 saiku 插件 2.5。按照此处的说明- 提取 Saiku 到biserver-ce\pentaho-solutions\system
. 然后我按照自述文件中的说明进行操作
delete the following JAR files from saiku/lib/
- mondrian*.jar, olap4j*.jar, eigenbase*.jar (should be 1 mondrian, 2 olap4j, 3 eigenbase jar files)
- open saiku/plugin.spring.xml and remove the following line (about line #33):
......
<property name="datasourceResolverClass" value="org.saiku.plugin.PentahoDataSourceResolver" />
.....
restart your server or use the plugin adapter refresh in http://localhost:8080/pentaho/Admin
thats it!
我使用 Schema 工作台创建了一个多维数据集。一个非常简单的立方体
<Schema name="S1">
<Cube name="Scott1" visible="true" cache="true" enabled="true">
<Table name="EMP" schema="SCOTT" alias="">
</Table>
<Dimension type="StandardDimension" visible="true" foreignKey="DEPTNO" name="Departments">
<Hierarchy name="Name" visible="true" hasAll="true">
<Table name="DEPT" schema="SCOTT" alias="">
</Table>
<Level name="name" visible="true" column="DNAME" uniqueMembers="false">
</Level>
</Hierarchy>
</Dimension>
<Measure name="employees" column="EMPNO" aggregator="count" visible="true">
</Measure>
<Measure name="Avg Salary" column="SAL" aggregator="avg" visible="true">
</Measure>
</Cube>
</Schema>
现在,我能够发布多维数据集并在分析视图中查看它。问题是我在 Siaku 分析窗口中看不到。多维数据集选择下拉列表中没有任何内容。
所以我尝试了几件事(其中一些在这篇文章中提到)
- 重新启动了我的 bi 服务器。
- 冲洗蒙德里安缓存。
- 将我的模式 xml 文件移动到名为 Cube 的新文件夹
pentaho-solutions\Haki\cube
中。 - 将我的条目移到
datasources.xml
.
没有什么。我将不胜感激任何指导。
Windows 7,pentaho 4.8 stable build 5,saiku 插件 2.5,oracle 10g。