<?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 SSAS data extraction in Qlikview in Water Cooler</title>
    <link>https://community.qlik.com/t5/Water-Cooler/SSAS-data-extraction-in-Qlikview/m-p/540764#M2099</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IS Anyone of you have extracted SSAS Cube data in QLikview ?. I am trying to extract the SSAS Cube data in Qlikview and refer the below syntax given in the QV community but it is not allowing us to extract the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333300;"&gt; CONNECT TO [Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Data Source=biserver;Use Procedure for Prepare=1;Auto Translate=True;Packet Size=4096;Workstation ID=biserver;Use Encryption for Data=False;Tag with column collation when possible=False];&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333300;"&gt;SQL SELECT * FROM OPENROWSET&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #333300;"&gt;('MSOLAP.4',&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #333300;"&gt;'Provide=MSOLAP.4;Integrated Security=SSPI;Persist Security Info=False;Data Source=biserver;Initial Catalog=Analysis Services Tutorial;',&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #333300;"&gt;'SELECT {[Measures].[Unit Price]} ON COLUMNS, {[Customer].[Customer].MEMBERS} ON ROWS FROM [Adventure Works DW]'&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #333300;"&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG style="color: #0000ff;"&gt;Based on the above example&amp;nbsp; i have created the below sample cube and try to load the cube data but it is not working.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;SQL SELECT * FROM OPENROWSET('MSOLAP.4','Provider=MSOLAP.4;Integrated Security=SSPI;Persist Security Info=False;Data Source=localhost(Server name , here we created the cube in local machine);Initial Catalog=Analysis Services Project_testing;Trust Server Certificate=False;','select Measures.Name on Columns,[Sales Person].Bonus on rows from TestCube');&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Measures = Bonus, Sales Quota&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Dimension = Territory Id , Name &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Data source = localhost&lt;BR /&gt;Sql Server version = SQL Server 2008 R2&lt;BR /&gt;Initial Catelog = Analysis Services Project_testing (SSAS project name)&lt;BR /&gt;Cube name = TestCube&lt;BR /&gt;table name = Sales Person(Dimension = Territory Id , Name) and Territory ( Measures = Bonus , Sales Quota)&lt;/P&gt;&lt;P&gt;can anyone help me to understand the syntax of the Openrow query like &lt;BR /&gt;1. If i have to see the data based on one dimension Name and one measures Bonus what would be my query? &lt;BR /&gt;2. Is the below query correct ?&lt;BR /&gt;select Measures.Name on Columns,[Sales Person].Bonus on rows from TestCube'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Can anyone please let me know if you have worked in SSAS cube in Qlikview and successfully extracted the data in QLIKView.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 28 Aug 2013 12:34:53 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-08-28T12:34:53Z</dc:date>
    <item>
      <title>SSAS data extraction in Qlikview</title>
      <link>https://community.qlik.com/t5/Water-Cooler/SSAS-data-extraction-in-Qlikview/m-p/540764#M2099</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IS Anyone of you have extracted SSAS Cube data in QLikview ?. I am trying to extract the SSAS Cube data in Qlikview and refer the below syntax given in the QV community but it is not allowing us to extract the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333300;"&gt; CONNECT TO [Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Data Source=biserver;Use Procedure for Prepare=1;Auto Translate=True;Packet Size=4096;Workstation ID=biserver;Use Encryption for Data=False;Tag with column collation when possible=False];&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333300;"&gt;SQL SELECT * FROM OPENROWSET&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #333300;"&gt;('MSOLAP.4',&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #333300;"&gt;'Provide=MSOLAP.4;Integrated Security=SSPI;Persist Security Info=False;Data Source=biserver;Initial Catalog=Analysis Services Tutorial;',&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #333300;"&gt;'SELECT {[Measures].[Unit Price]} ON COLUMNS, {[Customer].[Customer].MEMBERS} ON ROWS FROM [Adventure Works DW]'&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #333300;"&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG style="color: #0000ff;"&gt;Based on the above example&amp;nbsp; i have created the below sample cube and try to load the cube data but it is not working.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;SQL SELECT * FROM OPENROWSET('MSOLAP.4','Provider=MSOLAP.4;Integrated Security=SSPI;Persist Security Info=False;Data Source=localhost(Server name , here we created the cube in local machine);Initial Catalog=Analysis Services Project_testing;Trust Server Certificate=False;','select Measures.Name on Columns,[Sales Person].Bonus on rows from TestCube');&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Measures = Bonus, Sales Quota&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Dimension = Territory Id , Name &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Data source = localhost&lt;BR /&gt;Sql Server version = SQL Server 2008 R2&lt;BR /&gt;Initial Catelog = Analysis Services Project_testing (SSAS project name)&lt;BR /&gt;Cube name = TestCube&lt;BR /&gt;table name = Sales Person(Dimension = Territory Id , Name) and Territory ( Measures = Bonus , Sales Quota)&lt;/P&gt;&lt;P&gt;can anyone help me to understand the syntax of the Openrow query like &lt;BR /&gt;1. If i have to see the data based on one dimension Name and one measures Bonus what would be my query? &lt;BR /&gt;2. Is the below query correct ?&lt;BR /&gt;select Measures.Name on Columns,[Sales Person].Bonus on rows from TestCube'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Can anyone please let me know if you have worked in SSAS cube in Qlikview and successfully extracted the data in QLIKView.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Aug 2013 12:34:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Water-Cooler/SSAS-data-extraction-in-Qlikview/m-p/540764#M2099</guid>
      <dc:creator />
      <dc:date>2013-08-28T12:34:53Z</dc:date>
    </item>
  </channel>
</rss>

