<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Reg SSAS Cube in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Reg-SSAS-Cube/m-p/463389#M1157056</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;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.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;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.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL style="list-style-type: disc;"&gt;&lt;LI&gt;&lt;SPAN lang="EN-US" style="font-size: 11.0pt; font-family: 'Calibri','sans-serif'; color: #993366;"&gt;There are two main methods to get data from SSAS (SQL Server Analysis Services) cubes:&lt;/SPAN&gt;&lt;UL style="list-style-type: circle;"&gt;&lt;LI&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;SPAN lang="EN-US" style="font-size: 11.0pt; font-family: 'Calibri','sans-serif'; color: #993366;"&gt;OpenRowset&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-size: 11.0pt; font-family: 'Calibri','sans-serif'; color: #993366;"&gt;: You really connect to SQL Server and use the OpenRowset sentence to make SQL Server launch the MDX query to SSAS, and then getting back the results to QlikView in a Rowset object. This method allows full MDX syntax, with calculated members.&amp;nbsp; The MDX query has to be written in the QlikView SQL sentence &lt;STRONG&gt;manually&lt;/STRONG&gt;.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;SPAN lang="EN-US" style="font-size: 11.0pt; font-family: 'Calibri','sans-serif'; color: #993366;"&gt;SSAS OLEDB connection&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-size: 11.0pt; font-family: 'Calibri','sans-serif'; color: #993366;"&gt;: It is a MDX query directly launched to SSAS, but it allows only plain MDX, without calculated members. The MDX query has to be written in the QlikView SQL sentence &lt;STRONG&gt;manually&lt;/STRONG&gt;, but it is easier than with OpenRowset.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN lang="EN-US" style="font-size: 11.0pt; font-family: 'Calibri','sans-serif'; color: #993366;"&gt;QlikView has not any MDX wizard, you have to write the MDX sentence in the SQL part of the connection.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="text-indent: 18.0pt;"&gt;&lt;SPAN lang="EN-US" style="color: #943634;"&gt;But be careful when working with &lt;/SPAN&gt;&lt;SPAN style="color: #943634;"&gt;SSAS cubes:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL style="list-style-type: disc;"&gt;&lt;LI&gt;&lt;SPAN lang="EN-US" style="font-size: 11.0pt; font-family: 'Calibri','sans-serif'; color: #993366;"&gt;SSAS extractions are very slow, SSAS is an OLAP engine designed to aggregate many data and accumulate into some values. Not to return large datasets, like the relational database engine.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN lang="EN-US" style="font-size: 11.0pt; font-family: 'Calibri','sans-serif'; color: #993366;"&gt;If you query many “theoretical” cells from a SSAS cube, it is extremely slow and you can get the famous error “&lt;STRONG&gt;The expression contains a function that cannot operate on a set with more than 4,294,967,296 tuples.&lt;/STRONG&gt;”. Or get a “Out of memory” error. This can happen with large cubes with large dimensions, where the possible theoretical combinations (the product of all members) are larger.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN lang="EN-US" style="font-size: 11.0pt; font-family: 'Calibri','sans-serif'; color: #993366;"&gt;Usually the best approach is using the database (or DW) for transaction detail extractions, and the cube for complex calculations or special calculations on aggregated data (usually can be replicated into QlikView, but this way there is only one place to maintain this calculations).&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="text-indent: 18.0pt;"&gt;&lt;SPAN lang="EN-US" style="color: #943634;"&gt;But you can also think about this other points:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL style="list-style-type: disc;"&gt;&lt;LI&gt;&lt;SPAN lang="EN-US" style="font-size: 11.0pt; font-family: 'Calibri','sans-serif'; color: #993366;"&gt;Usual MDX query is not complicated, it is similar to SQL, mainly for simple queries.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN lang="EN-US" style="font-size: 11.0pt; font-family: 'Calibri','sans-serif'; color: #993366;"&gt;You can build dynamically any MDX query before querying to SSAS. i.e. I have done a SSAS extraction looping some dimensions to extract data for every dimension value, like doing slicing. Depending the combinations of MDX you need, you could use parameters in the QlikView script.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;JG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 28 Jan 2013 18:28:06 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-01-28T18:28:06Z</dc:date>
    <item>
      <title>Reg SSAS Cube</title>
      <link>https://community.qlik.com/t5/QlikView/Reg-SSAS-Cube/m-p/463385#M1157052</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We created a cube in SSAS (MS BI). How can i connect this cube with QV? Pls explain me the process fully.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thnx &amp;amp; Rgds,&lt;/P&gt;&lt;P&gt;Nandha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jan 2013 15:14:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reg-SSAS-Cube/m-p/463385#M1157052</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-01-28T15:14:41Z</dc:date>
    </item>
    <item>
      <title>Re: Reg SSAS Cube</title>
      <link>https://community.qlik.com/t5/QlikView/Reg-SSAS-Cube/m-p/463386#M1157053</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See &lt;A _jive_internal="true" href="https://community.qlik.com/message/302252#302252"&gt;here&lt;/A&gt;. If you need more information ask &lt;A _jive_internal="true" href="https://community.qlik.com/people/brunomarques"&gt;brunomarques&lt;/A&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jan 2013 15:15:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reg-SSAS-Cube/m-p/463386#M1157053</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2013-01-28T15:15:52Z</dc:date>
    </item>
    <item>
      <title>Re: Reg SSAS Cube</title>
      <link>https://community.qlik.com/t5/QlikView/Reg-SSAS-Cube/m-p/463387#M1157054</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wasswnaar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you refering to any link? If so I don't see any link in this. Can you pls sed me the link?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Nandha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jan 2013 15:17:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reg-SSAS-Cube/m-p/463387#M1157054</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-01-28T15:17:48Z</dc:date>
    </item>
    <item>
      <title>Re: Reg SSAS Cube</title>
      <link>https://community.qlik.com/t5/QlikView/Reg-SSAS-Cube/m-p/463388#M1157055</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: blue; font-size: 9pt;"&gt;1st Connector, the usual ones.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: blue; font-size: 9pt;"&gt;2nd &lt;STRONG&gt;openrowset &lt;/STRONG&gt;is a config to do in your analysis services SQL. It is a must.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: blue; font-size: 9pt;"&gt;3rd Query like it follows.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: blue; font-size: 9pt;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: blue; font-size: 9pt;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: blue; font-size: 9pt;"&gt;OLEDB&lt;/SPAN&gt; &lt;STRONG&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: blue; font-size: 9pt;"&gt;CONNECT&lt;/SPAN&gt;&lt;/STRONG&gt; &lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: blue; font-size: 9pt;"&gt;TO&lt;/SPAN&gt; &lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: maroon; font-size: 9pt;"&gt;[Provider=SQLOLEDB.1;Persist Security Info=True;User ID=sa;Data Source=blah.blah.blah.blah;Use Procedure for Prepare=1;&lt;BR /&gt;Auto Translate=True;Packet Size=4096;Workstation ID=blahblah;Use Encryption for Data=False;&lt;BR /&gt;Tag with column collation when possible=False]&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt; (&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: blue; font-size: 9pt;"&gt;XPassword&lt;/SPAN&gt; &lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: blue; font-size: 9pt;"&gt;is&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt; XVGHHbFNULYYWZVMSTdKGZNP);&lt;BR /&gt;&lt;BR /&gt;Pacientes:&lt;STRONG&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: blue; font-size: 9pt;"&gt;LOAD&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: maroon; font-size: 9pt;"&gt;"[Measures].[#Pacientes]"&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: blue; font-size: 9pt;"&gt;as&lt;/SPAN&gt; &lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: maroon; font-size: 9pt;"&gt;"Paciente"&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt;,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: maroon; font-size: 9pt;"&gt;"[Pacientes].[Estado Civil].[Estado Civil].[MEMBER_CAPTION]"&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: blue; font-size: 9pt;"&gt;as&lt;/SPAN&gt; &lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: maroon; font-size: 9pt;"&gt;"Estado Civil"&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt;;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt;&lt;STRONG&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: blue; font-size: 9pt;"&gt;SQL&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt; SELECT * FROM&lt;STRONG&gt;&lt;EM&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: #00b050; font-size: 9pt;"&gt;openrowset&lt;/SPAN&gt;&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt;('MSOLAP','DATA SOURCE=localhost;Initial Catalog=blahblah',&lt;BR /&gt;'SELECT&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; { [Measures].[# &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt;Pacientes]} ON COLUMNS,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; { [Pacientes].[Estado Civil].Members} ON ROWS&lt;BR /&gt;FROM [blahblah222]') &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="EN-US" style="font-family: 'Courier New'; color: black; font-size: 9pt;"&gt;&lt;SPAN style="color: black; font-size: 9pt; font-family: 'Courier New';"&gt;good luck. it is not that hard. read about MDX step by step to start doing queries. this is a very simple one.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jan 2013 16:46:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reg-SSAS-Cube/m-p/463388#M1157055</guid>
      <dc:creator>christian77</dc:creator>
      <dc:date>2013-01-28T16:46:13Z</dc:date>
    </item>
    <item>
      <title>Re: Reg SSAS Cube</title>
      <link>https://community.qlik.com/t5/QlikView/Reg-SSAS-Cube/m-p/463389#M1157056</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;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.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;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.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL style="list-style-type: disc;"&gt;&lt;LI&gt;&lt;SPAN lang="EN-US" style="font-size: 11.0pt; font-family: 'Calibri','sans-serif'; color: #993366;"&gt;There are two main methods to get data from SSAS (SQL Server Analysis Services) cubes:&lt;/SPAN&gt;&lt;UL style="list-style-type: circle;"&gt;&lt;LI&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;SPAN lang="EN-US" style="font-size: 11.0pt; font-family: 'Calibri','sans-serif'; color: #993366;"&gt;OpenRowset&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-size: 11.0pt; font-family: 'Calibri','sans-serif'; color: #993366;"&gt;: You really connect to SQL Server and use the OpenRowset sentence to make SQL Server launch the MDX query to SSAS, and then getting back the results to QlikView in a Rowset object. This method allows full MDX syntax, with calculated members.&amp;nbsp; The MDX query has to be written in the QlikView SQL sentence &lt;STRONG&gt;manually&lt;/STRONG&gt;.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;SPAN lang="EN-US" style="font-size: 11.0pt; font-family: 'Calibri','sans-serif'; color: #993366;"&gt;SSAS OLEDB connection&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-size: 11.0pt; font-family: 'Calibri','sans-serif'; color: #993366;"&gt;: It is a MDX query directly launched to SSAS, but it allows only plain MDX, without calculated members. The MDX query has to be written in the QlikView SQL sentence &lt;STRONG&gt;manually&lt;/STRONG&gt;, but it is easier than with OpenRowset.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN lang="EN-US" style="font-size: 11.0pt; font-family: 'Calibri','sans-serif'; color: #993366;"&gt;QlikView has not any MDX wizard, you have to write the MDX sentence in the SQL part of the connection.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="text-indent: 18.0pt;"&gt;&lt;SPAN lang="EN-US" style="color: #943634;"&gt;But be careful when working with &lt;/SPAN&gt;&lt;SPAN style="color: #943634;"&gt;SSAS cubes:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL style="list-style-type: disc;"&gt;&lt;LI&gt;&lt;SPAN lang="EN-US" style="font-size: 11.0pt; font-family: 'Calibri','sans-serif'; color: #993366;"&gt;SSAS extractions are very slow, SSAS is an OLAP engine designed to aggregate many data and accumulate into some values. Not to return large datasets, like the relational database engine.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN lang="EN-US" style="font-size: 11.0pt; font-family: 'Calibri','sans-serif'; color: #993366;"&gt;If you query many “theoretical” cells from a SSAS cube, it is extremely slow and you can get the famous error “&lt;STRONG&gt;The expression contains a function that cannot operate on a set with more than 4,294,967,296 tuples.&lt;/STRONG&gt;”. Or get a “Out of memory” error. This can happen with large cubes with large dimensions, where the possible theoretical combinations (the product of all members) are larger.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN lang="EN-US" style="font-size: 11.0pt; font-family: 'Calibri','sans-serif'; color: #993366;"&gt;Usually the best approach is using the database (or DW) for transaction detail extractions, and the cube for complex calculations or special calculations on aggregated data (usually can be replicated into QlikView, but this way there is only one place to maintain this calculations).&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="text-indent: 18.0pt;"&gt;&lt;SPAN lang="EN-US" style="color: #943634;"&gt;But you can also think about this other points:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL style="list-style-type: disc;"&gt;&lt;LI&gt;&lt;SPAN lang="EN-US" style="font-size: 11.0pt; font-family: 'Calibri','sans-serif'; color: #993366;"&gt;Usual MDX query is not complicated, it is similar to SQL, mainly for simple queries.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN lang="EN-US" style="font-size: 11.0pt; font-family: 'Calibri','sans-serif'; color: #993366;"&gt;You can build dynamically any MDX query before querying to SSAS. i.e. I have done a SSAS extraction looping some dimensions to extract data for every dimension value, like doing slicing. Depending the combinations of MDX you need, you could use parameters in the QlikView script.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;JG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jan 2013 18:28:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reg-SSAS-Cube/m-p/463389#M1157056</guid>
      <dc:creator />
      <dc:date>2013-01-28T18:28:06Z</dc:date>
    </item>
    <item>
      <title>Re: Reg SSAS Cube</title>
      <link>https://community.qlik.com/t5/QlikView/Reg-SSAS-Cube/m-p/463390#M1157057</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Added a quick manual to the download page of the tool. Hope it helps to clarify some questions on how to use it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jan 2013 22:58:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reg-SSAS-Cube/m-p/463390#M1157057</guid>
      <dc:creator>brunomarques</dc:creator>
      <dc:date>2013-01-28T22:58:41Z</dc:date>
    </item>
    <item>
      <title>Re: Reg SSAS Cube</title>
      <link>https://community.qlik.com/t5/QlikView/Reg-SSAS-Cube/m-p/463391#M1157058</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marques,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;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. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;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"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you pls help me here?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Nandha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jan 2013 05:39:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reg-SSAS-Cube/m-p/463391#M1157058</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-01-30T05:39:56Z</dc:date>
    </item>
    <item>
      <title>Re: Reg SSAS Cube</title>
      <link>https://community.qlik.com/t5/QlikView/Reg-SSAS-Cube/m-p/463392#M1157059</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Bruno,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;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&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"SELECT&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;{[Measures].[USD],&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; [Measures].[USD - Fct Budget],&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; [Measures].[USD - Fct Forecast]&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;DIMENSION&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt;"&gt;PROPERTIES&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt;"&gt;PARENT_UNIQUE_NAME&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt;"&gt;HIERARCHY_UNIQUE_NAME&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt;"&gt;ON&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt;"&gt;COLUMNS&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt; , &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt;"&gt;NON&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt;"&gt;EMPTY&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;CrossJoin&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;(&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; {[Dim Account Main3].[Account Key].&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000; font-size: 10pt;"&gt;Children&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;},&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; {[Dim Activity Main].[Activity Key].&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000; font-size: 10pt;"&gt;Children&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;},&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; {[DIM COST CENTRE MAIN].[Cost Centre Key].&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000; font-size: 10pt;"&gt;Children&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;})&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;ON&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt;"&gt;ROWS&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt; [IB Test] &lt;/SPAN&gt;;"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls let me know where do i want to use this query and how will i get the fields into QV?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thnx &amp;amp; Rgds,&lt;/P&gt;&lt;P&gt;Nandha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jan 2013 13:14:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reg-SSAS-Cube/m-p/463392#M1157059</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-01-30T13:14:07Z</dc:date>
    </item>
    <item>
      <title>Re: Reg SSAS Cube</title>
      <link>https://community.qlik.com/t5/QlikView/Reg-SSAS-Cube/m-p/463393#M1157060</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bruno,&lt;/P&gt;&lt;P&gt;Can you please send me the link of this manual from the download page. I am not able to locate it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Feb 2013 14:33:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reg-SSAS-Cube/m-p/463393#M1157060</guid>
      <dc:creator />
      <dc:date>2013-02-06T14:33:42Z</dc:date>
    </item>
    <item>
      <title>Re: Reg SSAS Cube</title>
      <link>https://community.qlik.com/t5/QlikView/Reg-SSAS-Cube/m-p/463394#M1157061</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bruno,&lt;/P&gt;&lt;P&gt;Can you please send me the link of this manual from the download page. I am not able to locate it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Feb 2013 14:34:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reg-SSAS-Cube/m-p/463394#M1157061</guid>
      <dc:creator />
      <dc:date>2013-02-06T14:34:12Z</dc:date>
    </item>
    <item>
      <title>Re: Reg SSAS Cube</title>
      <link>https://community.qlik.com/t5/QlikView/Reg-SSAS-Cube/m-p/463395#M1157062</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A class="loading" href="https://dl.dropbox.com/u/50769050/Qlikview%20MDX%20Query%20Tool%20Manual.pdf" title="https://dl.dropbox.com/u/50769050/Qlikview%20MDX%20Query%20Tool%20Manual.pdf"&gt;https://dl.dropbox.com/u/50769050/Qlikview%20MDX%20Query%20Tool%20Manual.pdf&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Feb 2013 14:47:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reg-SSAS-Cube/m-p/463395#M1157062</guid>
      <dc:creator>brunomarques</dc:creator>
      <dc:date>2013-02-06T14:47:10Z</dc:date>
    </item>
    <item>
      <title>Re: Reg SSAS Cube</title>
      <link>https://community.qlik.com/t5/QlikView/Reg-SSAS-Cube/m-p/463396#M1157063</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Bruno, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thnaks a ton for this MDX generator. This is awesome tool who dosen't know MDX query. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a question here will this tool support the parent child hierarchy. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem i face in my project is we have parent child hierarchy and this hierarchy is related with the unique key numbers. So the MDX generator is not able to search the key and give me the query. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you help me here?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Nandha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Feb 2013 16:34:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reg-SSAS-Cube/m-p/463396#M1157063</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-02-06T16:34:38Z</dc:date>
    </item>
    <item>
      <title>Re: Reg SSAS Cube</title>
      <link>https://community.qlik.com/t5/QlikView/Reg-SSAS-Cube/m-p/463397#M1157064</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did Uou check &lt;SPAN style="font-family: Arial, sans-serif; background-color: #ffffff;"&gt;O-delta™&lt;/SPAN&gt;?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Arial, sans-serif; background-color: #ffffff;"&gt;"O-delta™ by DataForce Ltd. is the most comprehensive Solution today for companies to dramatically cut down Time &amp;amp; Money of Connection, Migration &amp;amp; Integration of OLAP (mdx.) data cubes to any QlikView’s models, from months/ weeks to days/ hours !!! Http://www.dataforce-solutions.com The Benefits are: • Minimum need of skills/ knowledge of the current OLAP cubes’ structure • Leverages OLAP cubes development investments • Intuitive, integrated &amp;amp; consolidated view of all BI information as a front end • Mobile availability of old and new BI applications"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Arial, sans-serif; background-color: #ffffff;"&gt;&lt;A class="loading" href="http://www.youtube.com/watch?feature=player_embedded&amp;amp;v=dlb6nf0w6TQ" title="http://www.youtube.com/watch?feature=player_embedded&amp;amp;v=dlb6nf0w6TQ"&gt;http://www.youtube.com/watch?feature=player_embedded&amp;amp;v=dlb6nf0w6TQ&lt;/A&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2013 14:05:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reg-SSAS-Cube/m-p/463397#M1157064</guid>
      <dc:creator />
      <dc:date>2013-02-07T14:05:00Z</dc:date>
    </item>
  </channel>
</rss>

