ssas

deployment of adventureworks cube fails: 'user does not have permission to create a new object in 'GARY-PC' or the object does not exist

泄露秘密 提交于 2019-11-29 12:36:50
问题 when I deploy adventure works cube it fails, and i get: user does not have permission to create a new object in 'GARY-PC', or the object does not exist. trying to process cube from adventureworks DW and having what seem like permissions issues (?). took following steps (i am using sql server 2008 R2 developer edition and VS 2008): 1 downloaded and successfully created adventureworksDW (2008R2) database from 2 successfully created Datasource and DSV for a cube with 2 fact tables and several

A Developers guide to SQL Server Analysis Services and OLAP [closed]

走远了吗. 提交于 2019-11-29 10:27:01
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . This post from SqlBatman describes a situation similar to my current client and, in reality, indicative of many companies that rely on tons of reports which have been shifted to over-night processing because of their performance impact. How do I get started using Analysis Services in general and OLAP Cubes in

Using Entity Framework with an SSAS Cube

落爺英雄遲暮 提交于 2019-11-29 08:48:36
问题 Is it possible to use Entity Framework (any version, including, and preferably 4.0) to query an SSAS cube (preferably SSAS 2008)? 回答1: I would say no. There's a few questions on here looking for that, asking for the ORM equivalent for SSAS and such. LINQ to MDX would be lovely, but so far as is known it's just not on the cards. I've been looking and pondering for years for something simple in code to get data back to the middle tier, but I've never found it. Things like AdomdDataReader and

Execute query on SQL Server Analysis Services with IronPython

青春壹個敷衍的年華 提交于 2019-11-29 02:42:57
I was able to connect to SQL server Analysis service in Python using Microsoft.AnalysisServices.dll , and now I can't execute query on cube. I've tried Execute method same as following: amoServer.Execute('select from finance') After issuing Execute method I have this error: <Microsoft.AnalysisServices.XmlaError object at 0x000000000000002B [Microsoft.AnalysisServices.XmlaError]> Note: I'm using IronPython with Python 2.7 on Windows Server 64Bit. What's the problem? its better use Microsoft.AnalysisServices.AdomdClient.dll and mdx query. and set query result in Datasets in Ststem.Data assembly

Media queries PX vs EM vs REM

若如初见. 提交于 2019-11-28 21:36:58
Can anyone explain why my media queries break when converting them FROM px TO ems In the body of my document, I have included the following rule font-size: 62.5%, Therefore I would assume that I could convert my media query to FROM 650px to 65em? Changing my media queries to ems breaks the layout As an alternative, can I convert the media query to REMS with a pixel fallback ?? that said, I have no idea how to do this @media screen and (min-width: 650px) { body { font-size: 62%; background-color: #364759; background-repeat: repeat-x; background: url("bg.gif"); } #wrapper, footer { width: 80%;

Logical order an MDX query is processed

亡梦爱人 提交于 2019-11-28 12:52:25
What is the order of evaluation of the clauses within an MDX script? WITH MEMBER measures.A AS ... MEMBER measures.B AS ... SET S1 AS ... SELECT { measures.A ,measures.B ,measures.x } ON COLUMNS {S1} HAVING <condition> on ROWS FROM [Cube] WHERE ({S2}) FROM WHERE WITH SELECT HAVING ? But maybe not that simple as a MEMBER and a SET are dealt with differently in terms of context - so if this order is correct how does context tie in? I would say: FROM (including potential subselects) WHERE SETs and MEMBER location in the WITH clause Build the list of tuples for all query axes (columns, rows, ...)

SQL Server 2012: Login failed for user 'NT Service\\MSSQLServerOLAPService'.; 28000

让人想犯罪 __ 提交于 2019-11-28 09:05:06
I am using Analysis services in Microsoft SQL Server 2012 on Windows 7. I tried to create Mining models and process it. I am getting the following error while processing it. OLE DB error: OLE DB or ODBC error: Login failed for user 'NT Service\MSSQLServerOLAPService'.; 28000. How to correct this and process the model successfully? I recently encountered a similar error. My error was fixed by creating a new login in ssms, with the name the error gave me. In your case it would be 'NT Service\MSSQLServerOLAPService' You then need to check 'db_datareader' and the 'db_datawriter' in that new login

Changing sql-server DB from tabular to multidimensional

假装没事ソ 提交于 2019-11-28 08:37:08
问题 I have following problem: When I try to deploy my SSAS project (with cube, dimensions and all that jazz) to sql-server, it throws error saying that You cannot deploy the model because the DB deployment server is not running in multidimensional mode. I'm new to this, so it might be a dumb question, but how do I change database mode from tabular to multidimensional? 回答1: Tabular and Multi Dimensional are completely different thing. When you install SQL Server, you have to choose which one you

How to convert value to KB, MB, or GB depending on digit placeholders?

Deadly 提交于 2019-11-28 05:55:01
问题 I have the following Import-Module SqlServer $Analysis_Server = New-Object Microsoft.AnalysisServices.Server $Analysis_Server.connect("$server") $estimatedSize = $([math]::Round($($($Analysis_Server.Databases[$cube].EstimatedSize)/1024/1024),2)) this generates for me the size in MB I would like to enhance this to make it more user friendly readable especially for values that are in the double digit MB for example, sometimes i get values 50.9 MB which is good. but some other values are 37091

What is Multi Dimension OLAP CUBE and give example cube with more than 3 dimensions

余生颓废 提交于 2019-11-27 11:57:34
As I am new to SSAS, have been reading an article on Multi-Dimension OLAP Cube and struggling to understand Cube concepts, It has been said that Although the term "cube" suggests three dimensions, a cube can have up to 64 dimensions. Could you please explain how is this possible on cube (other than 3-Dim example x,y,z planes)? Please don't give only links to study but also expecting some explanation. Don't think of a cube as a three-dimensional structure (despite the name). A "dimension" in a data warehouse situation is simply a varying value that you can use to access data in your warehouse.