<?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 Pull data from an Analysis Services cube in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Pull-data-from-an-Analysis-Services-cube/m-p/192688#M716054</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you for your answer..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it is solved... &lt;IMG alt="Yes" src="http://community.qlik.com/emoticons/emotion-21.gif" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 28 Sep 2010 11:55:22 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-09-28T11:55:22Z</dc:date>
    <item>
      <title>Pull data from an Analysis Services cube</title>
      <link>https://community.qlik.com/t5/QlikView/Pull-data-from-an-Analysis-Services-cube/m-p/192684#M716050</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi..&lt;/P&gt;&lt;P&gt;I would like to report on data straight from our MS Analysis Services cubes. I have seen posts on this site suggesting exporting Fact and Dimension tables to CSV, importing to QVD and then creating routines to maintain data freshness. Also suggestions on creating connection and MDX to get data set to be used in QVD. A lot of additional legwork which seems counterproductive to Cube build process.&lt;/P&gt;&lt;P&gt;Is it possible to view AS cubed data in Qlikview as you would do in other tools i.e excel, proclarity.&lt;/P&gt;&lt;P&gt;responces much appreciated.&lt;/P&gt;&lt;P&gt;J&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Nov 2009 16:47:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pull-data-from-an-Analysis-Services-cube/m-p/192684#M716050</guid>
      <dc:creator />
      <dc:date>2009-11-13T16:47:01Z</dc:date>
    </item>
    <item>
      <title>Pull data from an Analysis Services cube</title>
      <link>https://community.qlik.com/t5/QlikView/Pull-data-from-an-Analysis-Services-cube/m-p/192685#M716051</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is no direct support for building or executing MDX-queries in QlikView. By using openrowset() in SQL, it is possible to encapsulate the MDX-query in a standard SELECT statement. In this example Microsoft OLEDB for Olap Services is used to query Analyis Services:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;B&gt;SQL SELECT * FROM&lt;/B&gt;&lt;BR /&gt;&lt;B&gt;openrowset('MSOLAP.3','DATA SOURCE=localhost;Initial Catalog=Adventure Works DW',&lt;/B&gt;&lt;BR /&gt;&lt;B&gt;'SELECT { [Measures].[Sales Amount], [Measures].[Tax Amount] } ON COLUMNS,&lt;/B&gt;&lt;BR /&gt;&lt;B&gt;{ [Date].[Fiscal].[Fiscal Year].&amp;amp;[2002], [Date].[Fiscal].[Fiscal Year].&amp;amp;[2003] } ON ROWS&lt;/B&gt;&lt;BR /&gt;&lt;B&gt;FROM [Adventure Works] WHERE ( [Sales Territory].[Southwest] )')&lt;/B&gt;&lt;BR /&gt;&lt;BR /&gt;Note: Support for openrowset is disabled by default in SQL 2005 Server.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Nov 2009 10:05:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pull-data-from-an-Analysis-Services-cube/m-p/192685#M716051</guid>
      <dc:creator />
      <dc:date>2009-11-16T10:05:28Z</dc:date>
    </item>
    <item>
      <title>Pull data from an Analysis Services cube</title>
      <link>https://community.qlik.com/t5/QlikView/Pull-data-from-an-Analysis-Services-cube/m-p/192686#M716052</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As I thought.. Thankyou&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Nov 2009 15:52:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pull-data-from-an-Analysis-Services-cube/m-p/192686#M716052</guid>
      <dc:creator />
      <dc:date>2009-11-16T15:52:03Z</dc:date>
    </item>
    <item>
      <title>Pull data from an Analysis Services cube</title>
      <link>https://community.qlik.com/t5/QlikView/Pull-data-from-an-Analysis-Services-cube/m-p/192687#M716053</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Tom,&lt;/P&gt;&lt;P&gt;I am trying to build MDX-queries to access our cubes in Analysis Services. We have enabled openrowset in SQL Server but still I am getting anerror when trying to connect. I hope you can help.&lt;/P&gt;&lt;P&gt;Error: &lt;B&gt;OLEDB connection failed&lt;/B&gt;&lt;/P&gt;&lt;P&gt;Here is my script:&lt;/P&gt;&lt;P style="font-style: italic"&gt;CONNECT TO [Provider=MSOLAP.4;Integrated Security=SSPI;Persist Security Info=True;Initial Catalog=peb;Data Source=post-sql01;MDX Compatibility=1;Safety Options=2;MDX Missing Member Mode=Error];&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;SQL SELECT * FROM OPENROWSET&lt;BR /&gt;('MSOLAP.4',&lt;BR /&gt;'Provider=MSOLAP.4;Integrated Security=SSPI;Persist Security Info=False;Data Source=post-sql01;Initial Catalog=peb;',&lt;BR /&gt;'SELECT {[Measures].[Market Volume]} ON COLUMNS, {[Date].[By Calendar Period].[Month].MEMBERS} ON ROWS FROM [DW]')&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Sorry for replying on such an old post, but I performed a search on this topic and found this thread so i thought you may be the most helpful.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Mike&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Aug 2010 15:34:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pull-data-from-an-Analysis-Services-cube/m-p/192687#M716053</guid>
      <dc:creator />
      <dc:date>2010-08-20T15:34:14Z</dc:date>
    </item>
    <item>
      <title>Pull data from an Analysis Services cube</title>
      <link>https://community.qlik.com/t5/QlikView/Pull-data-from-an-Analysis-Services-cube/m-p/192688#M716054</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you for your answer..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it is solved... &lt;IMG alt="Yes" src="http://community.qlik.com/emoticons/emotion-21.gif" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Sep 2010 11:55:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pull-data-from-an-Analysis-Services-cube/m-p/192688#M716054</guid>
      <dc:creator />
      <dc:date>2010-09-28T11:55:22Z</dc:date>
    </item>
    <item>
      <title>Re: Pull data from an Analysis Services cube</title>
      <link>https://community.qlik.com/t5/QlikView/Pull-data-from-an-Analysis-Services-cube/m-p/192689#M716055</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;Hi TMY,&lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt;I have a MDX query as below. How can i use this in QV to get the corresponding fields to create charts? &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/plain.png" /&gt;&lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="color: #008000; font-size: 10pt;"&gt;&lt;DIV&gt;SELECT&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;{[Measures].[USD],&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt; [Measures].[USD - Fct Budget],&lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;DIV&gt; [Measures].[USD - Fct Forecast]&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;}&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;DIMENSION&lt;/DIV&gt;&lt;DIV&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;ON&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;NON&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt;"&gt;EMPTY&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;CrossJoin&lt;SPAN style="font-size: 10pt;"&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt; {[Dim Account Main3].[Account Key].&lt;SPAN style="color: #800000; font-size: 10pt;"&gt;Children&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;},&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt; {[Dim Activity Main].[Activity Key].&lt;SPAN style="color: #800000; font-size: 10pt;"&gt;Children&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;},&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt; {[DIM COST CENTRE MAIN].[Cost Centre Key].&lt;SPAN style="color: #800000; font-size: 10pt;"&gt;Children&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;})&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;ON&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;/DIV&gt;&lt;DIV&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;FROM&lt;SPAN style="font-size: 10pt;"&gt; [IB Test] &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;;&lt;/DIV&gt;&lt;DIV&gt; &lt;/DIV&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;/SPAN&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jan 2013 14:23:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pull-data-from-an-Analysis-Services-cube/m-p/192689#M716055</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-01-30T14:23:35Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Pull data from an Analysis Services cube</title>
      <link>https://community.qlik.com/t5/QlikView/Pull-data-from-an-Analysis-Services-cube/m-p/192690#M716056</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nandha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where you able to connect the SSAS to qlikview? I heed some help on this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am working on the connecting SSAS cube to Qlikview.&lt;/P&gt;&lt;P&gt;I took help of the community to execute the script. Most of the answers shows the adventure works sample query. Based on this here is my Facts and Dimensions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;&lt;STRONG&gt;Measures:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;&lt;STRONG&gt;Total Qty, TEM, Fact Sales Count&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;&lt;STRONG&gt;Dimensions:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;&lt;STRONG&gt;Dim Customer, Dim Time, Dim Product, DIM ALIGNMENT ZIP TERR&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The above is the structure of my cube. It is a star schema.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Qlikview Script:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OLEDB CONNECT TO [Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=CUBE NAME;Data Source=SERVER NAME(wher my cube is deployed);Use Procedure for Prepare=1;Auto Translate=True;Packet Size=4096;Workstation ID=SERVER NAME (QV is residing);Use Encryption for Data=False;Tag with column collation when possible=False];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL SELECT * FROM OPENROWSET&lt;/P&gt;&lt;P&gt;('MSOLAP.5',&lt;/P&gt;&lt;P&gt;'Provider=MSOLAP.5;Integrated Security=SSPI;Persist Security Info=False;&lt;/P&gt;&lt;P&gt;Data Source=SERVER NAME(where my cube is deployed);Initial Catalog=CUBE NAME',&lt;/P&gt;&lt;P&gt;'SELECT {[Measures].[TOTAL QTY]} ON COLUMNS,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;{&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #ff0000;"&gt;[DIM PRODUCT].[PROD CD]&lt;/STRONG&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;}&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt; ON ROWS&lt;/STRONG&gt;&lt;/SPAN&gt; FROM [CUBE NAME]')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Error:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #ff0000;"&gt;Connection failed:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #ff0000;"&gt;SQLState: '42000'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #ff0000;"&gt;SQL Server Error: 4060&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;Cannot open database "MEDINCQV" requested by the login. The login failed.&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) How to rectify this error. Is there any problem with my mdx QV Script?&lt;/P&gt;&lt;P&gt;2) Do I have any access issue?&lt;/P&gt;&lt;P&gt;3) Do I have to do settings from SSAS also?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;NOTE: I do not want to use any third party application to achieve this.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Aug 2013 20:59:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Pull-data-from-an-Analysis-Services-cube/m-p/192690#M716056</guid>
      <dc:creator />
      <dc:date>2013-08-29T20:59:55Z</dc:date>
    </item>
  </channel>
</rss>

