I've been trying for a while to get Pentaho Report Designer to work with Microsoft SQL Server Analysis Services, using the olap4j driver.
Having already worked through a few issues with the help of PRD and OLAP4J developers, I'm faced with another one.
[See https://sourceforge.net/p/olap4j/dis...read/bef41fea/]
In summary, When creating an olap4j data source in PRD, I can preview my query successfully and see the returned data, but when I try to save it I get an error:
Julian Hyde (olap4j developer) has suggested a diagnosis of the problem:
The simplest explanation for this is that PRD is generating an out-of-bounds cell reference. The cell set has 1 column and 17 rows, but the request is asking for column 4.
Having already worked through a few issues with the help of PRD and OLAP4J developers, I'm faced with another one.
[See https://sourceforge.net/p/olap4j/dis...read/bef41fea/]
In summary, When creating an olap4j data source in PRD, I can preview my query successfully and see the returned data, but when I try to save it I get an error:
Code:
java.lang.IndexOutOfBoundsException: Coordinate 4 of axis 1 is out of range (1, 17)
at org.olap4j.driver.xmla.XmlaOlap4jCellSet.coordinatesToOrdinal(XmlaOlap4jCellSet.java:695)
at org.olap4j.driver.xmla.XmlaOlap4jCellSet.getCell(XmlaOlap4jCellSet.java:582)
...
Quote:
The simplest explanation for this is that PRD is generating an out-of-bounds cell reference. The cell set has 1 column and 17 rows, but the request is asking for column 4.