October 8, 2012 at 3:08 pm
1. can I take 1 source from table and other source from SSAS cube and do the "Report Server Project"
2. can I take 1 source from table and other source from SSAS cube and do the "Report Model Project" (for users to create Ad hoc Reports)
October 8, 2012 at 5:52 pm
Have you tried it? What did you find? Go to your test environment and try some test examples in SSRS.
Rob
One thought is that you could do an OPENROWSET to get the cube data and union with your relational data.
October 9, 2012 at 4:14 am
kothakeerthi (10/8/2012)
1. can I take 1 source from table and other source from SSAS cube and do the "Report Server Project"2. can I take 1 source from table and other source from SSAS cube and do the "Report Model Project" (for users to create Ad hoc Reports)
In the report you can create two different datasets one pointing to relational and other to OLAP. And then you can use Lookup/LookupSet function to join data from those two datasets.
OR
In the stored procedure, you can write an MDX query in a variable (say @mdx) to get the OLAP data and save it to a temp table. For that you need to create a Linked server (to OLAP DB). And use this @mdx variable in an OPENQUERY command (alongwith insert and select statements to fill the temp table). Then you can join the temp table along with relation table to get the appropriate data.
BI Developer
SSRS, SSIS, SSAS, IBM Cognos, IBM Infosphere Cubing services, Crystal reports, IBM DB2, SQL Server, T-SQL
Please visit... ApplyBI
October 9, 2012 at 4:14 am
Hi,
yes you can use two datasource SSAS and TSQL see these two links
http://www.bi-rootdata.com/2012/09/execute-mdx-query-with-tsql.html
http://www.bi-rootdata.com/2012/10/passing-multi-value-tsql-parameter-to.html
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply