You are not logged in.
Dear users of this forum,
we are pleased to inform you that we will be updating the software behind this forum in the near future.
Existing posts, users and categories will remain untouched.
Important:
We will keep you informed in the pinned thread.
Kind regards,
Your ReportServer Team
Liebe Nutzer dieses Forums,
wir freuen uns, euch mitteilen zu können, dass wir in naher Zukunft die Software hinter diesem Forum aktualisieren werden.
Existierende Beiträge, Nutzer und Kategorien bleiben weiterhin bestehen!
Wichtig:
Wir halten euch im angepinnten Beitrag auf dem Laufenden!
Mit vielen Grüßen
Euer ReportServer Team
I try to create Mondrian Datasource to review data in Saiku Report but prompted error in execution with SQLServerException: Invalid object name 'dbo.GLPOST'.
Hope that anyone able to help.
Mondrian Datasource configure as below ;-
URL : jdbc:mondrian:Jdbc=jdbc:sqlserver://192.8.8.21:1433
Properties :
type=OLAP
name=192.8.8.21
driver=mondrian.olap4j.MondrianOlap4jDriver
jdbcDrivers=com.microsoft.sqlserver.jdbc.SQLServerDriver
Schema created from Jasper Workbench 4.0 as below:
<Schema name="PackingList">
<Cube name="GLS" cache="true" enabled="true">
<Table name="GLPOST" schema="dbo" alias="GL">
</Table>
<Dimension type="StandardDimension" foreignKey="ACCTID" name="accounts">
<Hierarchy name="Default" hasAll="true" primaryKey="ACCTID">
<Table name="GLPOST" schema="dbo">
</Table>
<Level name="Account" table="GLPOST" column="ACCTID" uniqueMembers="false">
</Level>
<Level name="Year" table="GLPOST" column="FISCALYR" uniqueMembers="false">
</Level>
<Level name="Period" table="GLPOST" column="FISCALPERD" uniqueMembers="false">
</Level>
</Hierarchy>
</Dimension>
<Measure name="amount total" column="TRANSAMT" datatype="Numeric" aggregator="sum" visible="true">
</Measure>
<Measure name="account number" column="ACCTID" datatype="Numeric" aggregator="count" visible="true">
</Measure>
</Cube>
</Schema>
Offline
Hi coshin,
did you solve this problem?
If not, please try using jdbc:mondrian:Jdbc=jdbc:sqlserver://192.8.8.21:1433;jdbc.databaseName=yourDB as a connection URL. (note the jdbc prefix before your databaseName parameter)
If this doesn't work, you can select the default database for the user your are connecting from in SQL Server -> Security -> Logins -> your user. But the URL should work.
Please let me know if this works.
Cheers,
Eduardo
Offline
Hello,
I am experimenting exactly the same problem, I tried with the URL extension but it didnt worked. Affortunatly it worked with the second solution.
thanks.
Offline
Hi mahdsip,
did you write "jdbc.databaseName=yourDB" or "databaseName=yourDB" ?
Could you please post the URL that is not working?
The URL works in my test case.
Cheers,
Eduardo
Offline
For completeness:
The correct URL should be:
jdbc:mondrian:Jdbc=jdbc:sqlserver://127.0.0.1;jdbc.databaseName=TEST_DW
Cheers,
Eduardo
Offline