connecting to MS Analysis Server

  • Thread starter Thread starter wooz
  • Start date Start date
W

wooz

How to connect to MS Analysis Server ? I know i can use XMLA (SOAP), but is
there any other posibility to do that.
Another question, how to connect to local cube which is located on PocketPC
device.
 
There is no OLAP provider for Windows CE. If you can do it with XML - go for
it.
As for cube on PPC, how do you get it there???
 
U¿ytkownik "Alex Feinman said:
There is no OLAP provider for Windows CE. If you can do it with XML - go for
it.
As for cube on PPC, how do you get it there???

1.create local cube.

for example (MDX) :

CREATE GLOBAL CUBE Sales
STORAGE 'c:\Sales.cub'
FROM [Sales]
(MEASURE Sales.[Unit Sales],
DIMENSION Sales.Customers,
DIMENSION Sales.Product,
DIMENSION Sales.Time)

2. copy sales.cub to PPC

My problem is how to connect to local cube. I try to build an application
which provide ability to work off-line, when ther is no connection to
server.
 
But there is no OLAP provider on the CE platform. Copying the cube to the
device achieves nothing

--
Alex Feinman
---
Visit http://www.opennetcf.org
wooz said:
U¿ytkownik "Alex Feinman said:
There is no OLAP provider for Windows CE. If you can do it with XML - go for
it.
As for cube on PPC, how do you get it there???

1.create local cube.

for example (MDX) :

CREATE GLOBAL CUBE Sales
STORAGE 'c:\Sales.cub'
FROM [Sales]
(MEASURE Sales.[Unit Sales],
DIMENSION Sales.Customers,
DIMENSION Sales.Product,
DIMENSION Sales.Time)

2. copy sales.cub to PPC

My problem is how to connect to local cube. I try to build an application
which provide ability to work off-line, when ther is no connection to
server.
 
U¿ytkownik "Alex Feinman said:
But there is no OLAP provider on the CE platform. Copying the cube to the
device achieves nothing

So there is no chance to get data from local cube ?

Could you advise me what solutions should i use to build application which
will be able to work in offline mode with data from analisys service.
 
I cannot think of anything. I mean there is a number of ways to store data
locally, but you want to access them in a particular way not supported on
this platform
 
Back
Top