Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

OLAP Cube deployment issues

I'm really new to this, so I am probably making a simple mistake.

I need to make an OLAP cube using a remote database. After I set up the dimensions and measures and create the cube, I can not get the cube to launch to the local server. I keep getting the error, "The project could not be deployed to the 'localhost' server because of the following connectivity problems : A connection cannot be made. Ensure that the server is running. To verify or update the name of the target server, right-click on the project in Solution Explorer, select Project Properties, click on the Deployment tab, and then enter the name of the server."

However, the local SQL server is running(from as far as I can tell), and I have no idea on how to go about fixing this. I've tried replacing "localhost" with "." and the IP, but that hasn't worked either.

Here's the guide I was following: http://www.mssqltips.com/sqlservertip/1532/build-a-cube-from-an-existing-data-source-using-sql-server-analysis-services/

Maybe the SQL Server isn't really running? How can I check? Or am I skipping over something important when I try to process the cube?

like image 631
Daniel Martin Avatar asked Jul 12 '12 20:07

Daniel Martin


People also ask

Are OLAP cubes obsolete?

While OLAP cubes (or business intelligence cubes) are now unnecessary, it's important to note that OLAP workloads are in no way obsolete. OLAP itself enables the flexible multidimensional data analysis that leading organizations use every day.

What is replacing OLAP cubes?

With OLAP-Technologies you replace your cubes one to one with another technology. Therefore you don't change anything on your current architecture but replace your cubes with a modern big data optimised technology which focus on fastest query response time.

How do you deploy a cube?

Right-click the database you want to deploy, and select Script Database As > CREATE To > New Query Editor Window. Note: To deploy the cube later or keep a copy of the cube structure, select File. Note: You can also change the database and cube name in the XMLA script. Specify the target server name and click Connect.


1 Answers

you need to deploy the cube to a SSAS instance. See here I have the SQL Server instance and the SSAS instance (check the icon to see the difference):

enter image description here

you can check if you have it running on the services:

enter image description here

if you dont have it, yo ucan install from the sql server installation CD

like image 118
Diego Avatar answered Sep 21 '22 01:09

Diego