Tagged Questions

ADOMD.NET is a Microsoft .NET Framework data provider that is designed to communicate with Microsoft SQL Server Analysis Services. ADOMD.NET uses the XML for Analysis protocol to communicate with analytical data sources by using either TCP/IP or HTTP connections to transmit and receive SOAP requests and responses that are compliant with the XML for Analysis specification

learn more… | top users | synonyms

6
votes
5answers
981 views

Different approaches to accessing SSAS

I’m interested in knowing some different approaches for retrieving data from Analysis Services, to use in either objects in code, or for end-user reporting. I’ve used two different approaches in the ...
5
votes
1answer
337 views

Reading SQL Analysis Services Metadata

I have a number of objects in my SSAS cube, many of which were created to be invisible. For example: CREATE MEMBER CURRENTCUBE.[Measures].[Latency Backcolor] AS CASE WHEN [Average Latency] > ...
2
votes
1answer
81 views

Execute a Job using T-SQL on a SSAS Cube

I'm trying to execute a SQL job using T-SQL in my application on a SSAS cube. Here is what I have got so far: public void UpdateCube() { AdomdConnection conn3 = new AdomdConnection("Data ...
2
votes
3answers
333 views

ASP.NET / SSAS / SQL Server - An existing connection was forcibly closed by the remote host [closed]

Possible Duplicate: Can I turn off impersonation just in a couple instances I've created an application that, when uploaded to my server throws an exception. It works fine locally but the ...
2
votes
1answer
3k views

MDX query containing 2 dimensions from the same Hierarchy

The relevant structures from my cube are that I have a Hierarchy with "Class" and "SubClass". I also have a Measure called "Value" which is what im trying to obtain. A simple query may look like: ...
1
vote
1answer
21 views

Read from CellSet using LINQ

AdomdCommand cmd = new AdomdCommand(commandText, conn); CellSet cs = cmd.ExecuteCellSet(); var result = from a in cs select new {...}; Is it possible to use LINQ to read ...
1
vote
1answer
116 views

Specify cube name in the connection string

I am new to the Analysis services world, and i was wondering why we can't specify the cube name in the connection string? I am using sql server 2008 R2 and the adomdclient assembly version 10.0.0.0 ...
1
vote
1answer
195 views

How to create a custom ADO Multi Dimensional Catalog with no database

Does anyone know of an example of how to dynamically define and build ADO MD (ActiveX Data Objects Multidimensional) catalogs and cube definitions with a set of data other than a database? ...
0
votes
2answers
50 views

How to retrieve data from mdx query in c#?

I am trying to get data from an MDX query using the Adomdclient library. I relied on this example http://www.yaldex.com/sql_server/progsqlsvr-CHP-20-SECT-6.html. MDX query: SELECT ...
0
votes
1answer
76 views

SQL Server 2008 Analytic Services.ADOMD Cannot connect to the database

There is a strange error when I trying to connect SQL Server OLAP database via ADOMD. Here is an error I get: Either the user, NT AUTHORITY\ANONYMOUS LOGON, does not have access to the jan ...
0
votes
1answer
98 views

SSAS / MDX / ADOMD.NET - Retrieve last updated date from a cube

I'm trying to retrieve the last updated date from a cube. I have a process that runs twice a day (eventually I would like it to be able to be executed at a click of a button but thats further down the ...
0
votes
0answers
42 views

AdomdConnection open method is very slow

When my program opens an AdomdConnection, it takes a lot of time (roughly 20 seconds). I tried to debug and identified that it's the open method that is making the program slow. This problem is ...
0
votes
1answer
200 views

SQL SERVER / IIS - Kerberos Double-Hop Issue between IIS and SSAS [closed]

Possible Duplicate: Can I turn off impersonation just in a couple instances I've created an application that, when uploaded to my server throws the following exceptions: [Win32Exception ...
0
votes
1answer
141 views

Kerberos Double-Hop Issue between IIS and SSAS [closed]

Possible Duplicate: Can I turn off impersonation just in a couple instances I've created an application that, when uploaded to my server throws the following exceptions: [Win32Exception ...
0
votes
1answer
121 views

Cannot connect to SSAS when on IIS server

When I upload my ASP MVC 3 app to my IIS server, my connection string to connect to my SSAS server returns an error: An existing connection was forcibly closed by the remote host The app works fine ...
0
votes
0answers
85 views

OutOfMemory Exception when calling AdomdDataReader.Read() in a loop

I am trying to get a large amount of data from a Sql Server Analysis Services Cube and store it in memory using ADOMD.NET classes, so I can use the data in other parts of my .NET application. ...
0
votes
0answers
62 views

Adomd.Net doesn't accept UTF-8 response?

Him I am using Adomd.Net to access my Pentaho Mondrian olap server. Since I had encoding problems (german umlauts) I changed the response encoding to UTF-8. But now Adomd.Net throws an error which ...
0
votes
1answer
300 views

First Step into ADOMD.Net - Cannot reference Microsoft.AnalysisServices

Can someone help me out please, as google is not providing the answers. I've got a SharePoint 2007 setup which uses SQL Server 2008 R2 SSAS OLAP cubes via some web parts. As a C# developer, ...
0
votes
0answers
62 views

How we identify the Provider details from Adomd Connections' response

We are using the AdomdConnection object for XMLA Service connection. Is there any option to get the provider details like Mondrian or MS-SSAS or Oracle-Essbase or any XMLAService with ...
0
votes
0answers
143 views

Creating a secured connection from ASP.NET -> ADOMD.NET to Mondrian on Tomcat

Do anyone have any experience setting up a connection from a secured ASP.NET connection with ADOMD.NET connecting to Mondrian? I am looking for a step-by-step guide to doing this. Client is ...
0
votes
0answers
68 views

FormattedValue in adomd.net is always NULL

I have only ever seen null values returned from using the FormattedValue property on a Microsoft.AnalysisServices.AdomdClient.Cell It's just a standard situation, using mdx in a string to perform an ...
0
votes
0answers
280 views

C# and ADOMD.net

I want to retrieve dimension and measures from the cube in c#. I am using "getschemadataset()" method to get the information. I am calling this method twice -once for cube dimension and second for ...
0
votes
1answer
345 views

How to acess tuple/cell properties of MDX output through C#?

I have an MDX query I am pulling through using Adomd.net where cmd contains the command text. This, when run directly against a cube returns the following output, just a caption and the count ...
0
votes
1answer
608 views

Adding Adomd parameters programmatically C#

Afternoon all. I'm building a web app and I'm attempting to pull through some data from an SSAS cube. I have the following MDX I would like to replicate in c# but with adding a few parameters i.e. ...
0
votes
1answer
805 views

ADOMD.NET - An existing connection was forcibly closed by the remote host

We have a WPF application which gets data from an Analysis Services Cube. The client connects directly to the database using ADOMD.NET. The WPF application works fine on existing Windows XP ...
0
votes
1answer
568 views

Differences between ADOMD.net and Analysis Services OLE DB Provider (especially regarding authentication)

I'm attempting to connect to a SQL Server Analysis Services cube on a remote server which is not connected to the domain I'm connected to. I can connect to the cube with Excel after providing ...
0
votes
1answer
217 views

ADOMD & Excel Integration

All, We have an Excel spreadsheet that uses ADOMD to query OLAP cubes and present the data in Excel. We are using version 2.8 at the moment of the ADOMD API. As far as I know there is an ADOMD.NET ...
0
votes
1answer
585 views

How to access KPI Value hidden measures via ADOMD.NET?

I'm trying to access the KPI metadata via ADOMD.NET (using MDSCHEMA rowsets) with SQL Server/SSAS 2008. When I get a given KPI VALUE field, for example in Adventure Works, it returns what I believe ...
0
votes
1answer
137 views

Connecting to SQL Server Analysis with a windows user

How can you impersonate a windows user in a connection to an analysis server - using ADOMD.NET? Webserver is next to Analysis server, but they are not in a domain. The webservice running on the ...
0
votes
2answers
240 views

Writing updates to OLAP cube

What is the easiest way to write user entered measure values (sales forcast) to the SQL Server Analysis Services OLAP cube from a .Net client application? I'm aware that underlying fact table can be ...
0
votes
3answers
2k views

Has anyone used ADOMD.NET with WPF DataGrid?

I am trying to find a good way of accessing a Business Intelligence OLAP Cube from C#. I don't really care much as to how this is done, but since currently I am trying to implement this with the ...
0
votes
2answers
3k views

ADOMD.NET 9.0 Redistributable?

Got a problem with ADOMD.NET 8.0, SQL2008 and our app. It isn't giving us the right metadata. I can't find anywhere to download the ADOMD.NET 9.0 redistributable. Only way I can get it is by ...