OLAP on SQL Express

懵懂的女人 提交于 2020-01-13 09:32:48

问题


I'm wondering if there is any desktop OLAP solution that can use SQL Express (and therefore does not require Analysis Services)

I've been tasked with finding a way to allow our customers to do 'Ad-Hoc' reports, but the vast majority of them are on Sql Express, In previous jobs, customers have had Analysis Services and typically Cognos or Crystal Reports, so all that was required was to design the cube.


回答1:


SQL Express is pretty limited, I don't know of any OLAP capabilities.

Although, we use DevExpress OLAP Pivot Grid with ROLAP to get around this problem.

Just create a cube-like SQL query and plug it in.

SELECT productname, reasonforsale, salestotal
  FROM orderdetail



回答2:


You can get editions of SQL server express with SQL Server Reporting Services (SSRS) this would allow you design reports without the expense of Crystal or Business objects.

Here is the link to the download page. Just select the option on the far right in either 32 or 64 bit flavour depending on what you are running

http://www.microsoft.com/express/Database/InstallOptions.aspx




回答3:


There is PowerPivot Add-in for Excel. It is an ssas engine with in-memory storage and a powerful expression language called DAX that allows you to load all kinds of data sources and create model/s in Excel itself. It has an engine called Vertipaq that highly compresses the underlying data allowing millions of rows to be sliced and diced.

Regards, Hrvoje




回答4:


You can use icCube on the desktop to connect to SQL Express.




回答5:


You can create your own .NET or Delphi application (Desktop or Web) imbedding RadarCube components of Direct edition.

The OlapCube component has a visual designer to create a cube structure (Dimensions, Hierarchies) and ROLAP engine to build cubes and process queries.

The OlapAnalysis component provides Visual Analysis tools with Pivot Grid/Chart functionality.

https://www.radar-soft.com/



来源:https://stackoverflow.com/questions/3724548/olap-on-sql-express

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!