Posted 5 March 2020, 7:21 am EST
Hi I have a connection problem where I have two database instances with one cube each.
I’m able to connect to the first cube i created on the first instance, but can’t seem to connect to the one on the other instance. I suspect this is due to not specifying the catalogue when connecting to the cube. Is it possible to do that anywhere?
I’ll try to illustrate my setup here below:
http://localhost/OLAP/msmdpump.dll
|
|- Instance 1
| |
| Cube 1
|
|- Instance 2
|
Cube 2
I can connect to Cube 1 by using the following connection string:
var ng = new wijmo.olap.PivotEngine({
itemsSource: {
url: ‘http://localhost/OLAP/msmdpump.dll’
cube: ‘Cube1’
}
});
But if i try to connect to the other one with Cube2 it does not work.