Hi All,
We created a cube in SSAS (MS BI). How can i connect this cube with QV? Pls explain me the process fully.
Thnx & Rgds,
Nandha
See here. If you need more information ask brunomarques.
Wasswnaar,
Are you refering to any link? If so I don't see any link in this. Can you pls sed me the link?
Rgds,
Nandha
1st Connector, the usual ones.
2nd openrowset is a config to do in your analysis services SQL. It is a must.
3rd Query like it follows.
OLEDB CONNECT TO [Provider=SQLOLEDB.1;Persist Security Info=True;User ID=sa;Data Source=blah.blah.blah.blah;Use Procedure for Prepare=1;
Auto Translate=True;Packet Size=4096;Workstation ID=blahblah;Use Encryption for Data=False;
Tag with column collation when possible=False] (XPassword is XVGHHbFNULYYWZVMSTdKGZNP);
Pacientes:LOAD
"[Measures].[#Pacientes]" as "Paciente",
"[Pacientes].[Estado Civil].[Estado Civil].[MEMBER_CAPTION]" as "Estado Civil";
SQL SELECT * FROMopenrowset('MSOLAP','DATA SOURCE=localhost;Initial Catalog=blahblah',
'SELECT
{ [Measures].[# Pacientes]} ON COLUMNS,
{ [Pacientes].[Estado Civil].Members} ON ROWS
FROM [blahblah222]')
good luck. it is not that hard. read about MDX step by step to start doing queries. this is a very simple one.
I will explain bellow the way to do it (because you can do it), but I have to ask you first if you really need to extract data from a cube. This question is because you usually (99% of times) have the same data in the cube and in the DW behind the cube, and if you use cubes to extract data into QlikView, you are using an unnecessary piece that will complicate future maintenance, that is very rigid and that usually hasn't all the detailed data.
People want to use their cubes because they have spent so many weeks (or months) and effort building them, that they think that work have to count for other projects. But usually you can have a QlikView application from the same DW with the same information (or more) just in some hours or days.
But be careful when working with SSAS cubes:
But you can also think about this other points:
JG
Added a quick manual to the download page of the tool. Hope it helps to clarify some questions on how to use it.
Hi Marques,
I have mappd the cube server with my local Server Management Studio. But i am not clear how i can link that to my MDX query generator.
When i type the servfer path in server information and click Connect button i am getting and error "InvalidArgument=Value of '0' is not valid for 'index' Parameter Name: index"
Can you pls help me here?
Rgds,
Nandha
Bruno,
Its working fine now. I faced that problem as the services are not running properly. Now its fixed and working fine and i got the query generated as below
"SELECT
{[Measures].[USD],
[Measures].[USD - Fct Budget],
[Measures].[USD - Fct Forecast]
}
DIMENSION
PROPERTIES PARENT_UNIQUE_NAME,HIERARCHY_UNIQUE_NAME ON COLUMNS , NON EMPTY
CrossJoin
(
{[Dim Account Main3].[Account Key].
Children},
{[Dim Activity Main].[Activity Key].
Children},
{[DIM COST CENTRE MAIN].[Cost Centre Key].
Children})
ON
ROWS
FROM
[IB Test] ;"
Pls let me know where do i want to use this query and how will i get the fields into QV?
Thnx & Rgds,
Nandha
Hi Bruno,
Can you please send me the link of this manual from the download page. I am not able to locate it.
Hi Bruno,
Can you please send me the link of this manual from the download page. I am not able to locate it.