The xmla tag has no wiki summary.
4
votes
3answers
1k views
Query OLAP Mondrian (MDX, XMLA) with a Python interface?
Actually I'm using R + Python with RPY2 to manipulate data and ggplot to create beautiful graphics.. I have some data in a PostgreSQL database, and I'm using psycopg2 to query data.
I'm starting a ...
2
votes
1answer
56 views
Is client-side OLAP (e.g. client-side MDX construction plus xmla4js) bad for security?
I'm working on a public-facing web project that will be powered in part by an OLAP server. I wanted to compare a couple ways of doing this from a security perspective:
My initial idea was to pass ...
1
vote
1answer
22 views
MDX query creating verbose xml style field names in dataset in SSRS
I just pasted a query (which works in SSMS) into a new dataset in VS.net/BIDS
However, the field/column names returned are all showing values like:
...
1
vote
1answer
27 views
How can i get Server Name,ID in XMLA file?
I want to create a Dynamic XMLA file where i want to process the cubes on different servers .
This is the script i have generated from Mangement studio. but i could not able to see the Server node in ...
1
vote
0answers
44 views
Receive XMLA from ruby
I have a ruby server side program that uses a specific library to send request to an olap server and receives the result dataset from the same library.
For some reason, I don't want to call the ...
1
vote
2answers
133 views
Schema-agnostic OLAP-like tool?
Do there exist any (ideally free or open-source) tools for performing OLAP analyses on arbitrary tables in a relational database, without requiring any advance specification of dimensional ...
1
vote
2answers
1k views
What options do I have for creating OLAP cubes with Postgres and making it accessible via .net webservices/wcf?
We have a large POSTGRESQL transactional database (around 70 million rows in all), and have previously created a data warehouse from this (updated daily) to run reports off of.
To make this more ...
1
vote
2answers
151 views
Prevent Visual Studio Web Test from changing request details
I have a service that accepts Xmla queries for Analysis services, often times those queries themselves will have a string that contains a fragment that looks something like
{{[Time].[Year].[All]}}
...
0
votes
0answers
16 views
How to get the list of databases in an analysis services using xmlaclient in c#
I connected to a particular server in c# using xmlaClient object. Now i want to list out the all databases in that particaular server.
how to implement that.
Please help me.
Thanks
0
votes
1answer
24 views
Creating ssas cube in xmla structure
I want to create a cube by using xmla structure, with out using the BIDS.
How to do that. What dll or references are required to get the cube.
Thanks In advance for your help
Mihir
0
votes
0answers
17 views
Process cube from TSQL
What is the way in TSQL to run the XMLA code to process a cube
XMLA:
<Process xmlns="http://schemas.microsoft.com/analysisservices/2003/engine">
<Object>
...
0
votes
0answers
12 views
Getting cube and partition sizes with XMLA
How would I use XMLA to query a specific catalog to get back partition sizes?
I've tries something like
<Discover xmlns="urn:schemas-microsoft-com:xml-analysis">
...
0
votes
0answers
70 views
Connect to TM1 using XMLA
I'd like to connect to a IBM Cognos TM1 using XMLA, in particular using Adomd.Net.
Accoring to http://en.wikipedia.org/wiki/Comparison_of_OLAP_Servers#APIs_and_query_languages TM1 supports XMLA/MDX, ...
0
votes
0answers
112 views
Do I need to process the SSAS cube or can I process just specific dimensions?
I am invoking two xmla scripts on a 2008 SSAS via a SSIS package. The first one processes the dimensions and the second one processes the partitions.
When the dimensions are finished processing the ...
0
votes
1answer
62 views
Discovering partition names SSAS
Is there a way I can dynamically discover if a partition with a specific name already exists in my cube using DMV or XMLA?
Thanks
0
votes
1answer
86 views
Updating cube (writeback) via MDX on SAP
does anybody know if SAP BW supports UPDATE CUBE statement in MDX query (connection to server established via XMLA) ?? It returns some generic error and I cannot find any documentation...
Same ...
0
votes
0answers
73 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
261 views
MDX filtering by member property on SAP BW
I'm trying to filter members on axis by their name or unique name and i cannot get MDX below working on SAP BW (over XMLA).
SELECT
{Filter([Z_PRODUCT].AllMembers, ...
0
votes
1answer
63 views
Creating SSAS partitions from an XML file
I have a requirement to create new partitions in a cube using stored procedures.
I have seen solutions using C#/VB/ but nothing for SP's
I have generated the CREATE XMLA but have no idea how to hand ...
0
votes
0answers
68 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
2answers
183 views
Opensource or free online Oracle OLAP Server or Offline Oracle Cube file
Is there any free online Oracle OLAP servers available for testing? or Is there any offline cube available for Oracle like (.cub) in SSAS.
0
votes
2answers
238 views
SSAS programmatically back up metadata only
We have a set of SSAS 2005 databases that are maintained by various employees. The metadata/schema including format strings, etc. have evolved to represent a significant amount of work and they change ...
0
votes
2answers
562 views
SSAS - Is it possible to add an attribute to an existing dimension w/o redeploying the entire cube
I have a dimension Entity with just Key and Value attributes. We need to add a new attribute, IsSpecial with a default member of [False].
When I try to run the xmla, I get the following error:
...
0
votes
1answer
287 views
How to query (xmla) the size of an OLAP catalog in MSAS2008?
I would like to be able to query against an SSAS2008 instance and get a listing of all the catalogs that exist in it, as well as their respective storage sizes. In Management Studio, I can right ...
0
votes
2answers
788 views
Automate deployment of XMLA / documentation on Microsoft.AnalysisServices.Xmla
I'm looking to automate the deployment of XMLA scripts. I've come across an article that gives a small demo, but I'm hoping to find more info.
Specifically, where is the documentation for ...
0
votes
3answers
2k views
Use Results of an XMLA query in Integration Services
I have an XMLA query which returns the State and Last Processed date of an Analysis Services cube as XML, like so:
Query:
<Discover xmlns="urn:schemas-microsoft-com:xml-analysis">
...