I am quiet new to ireport . Thing is I am using Ireport 5.1 to generate reports from my mondrian olap cube . I successfully established connection with my olap schema and data source . After that I created a new report and wrote following mdx query :
SELECT
NON EMPTY {Hierarchize({[Ho].[Ho].Members})} ON COLUMNS,
NON EMPTY {[Measures].[count]} ON ROWS
FROM [xyz]
It shows 3 records read when I click on preview data . But problem is it is not showing any fields nor any data is previewed . Moreover I am not getting any error .Please guide me on how to proceed further with this .
Related
this report works well in the preview mode with One Empty Record as following
But when I change it to my database adapter.xml(100% sure the connection is good), the data is missing.Why
Here is my settings:
We have a live connection to a tabular 2014 edition of SQL Analysis Services model not a multidimensional one.
How can we enable the tabular model to show full underlying data in Tableau when trying to export the full dataset behind the graphs we produce?
Thanks!
If you are in the worksheet where your chart is you can click on Worksheet on the top menu, then click on Export, and if you select data it will put the data
in an Access database. Or you can send it in a crosstab format to Excel.
Also, if you make a duplicate copy of the chart worksheet and then in the new duplicate worksheet click on "Show Me" on the right, and click on the first option for "Text Table" and it should
format it as data if you need to see how it looks in Tableau before exporting.
I am using Jaspersoft Studio 6.3.1 with Jasper Report Server Community edition and I have a report with multiple subreports . All subreports have their own SQL queries and they all return the same columns. Once all queries are executed I would like to present all data on my report as one table using a sorting order over the entire dataset (all results from all queries).
It looks to me like I need to sort the data in the report and I cannot find how to do it.
Any ideas/help would be much appreciated - so thank you in advance.
I am bit new to iReport and JasperReports. I have a mondrain cube and want generate reports from olap cube. In this direction I tried few things. I connected my OLAP cube's schema as datasource . created new report and passed mdx to it. But I am not getting any output. Please guide me on how to do this thing .
I have a Crystal Report I'm working on; last week it was returning results but when I fired it up this morning I was no longer getting anything. Checking the SQL query, I show that the table name is listed twice, for some reason:
SELECT "WMS_TESTINFO"."RECORD_NAME"
FROM "TestEnv"."dbo"."WMS_TESTINFO" "WMS_TESTINFO"
Any thoughts on what could have broken? I've checked that the database is connected and my data is still there.
The table name is listed twice as Crystal Reports creates an alias for every table.
This Crystal generated SQL:
FROM "TestEnv"."dbo"."WMS_TESTINFO" "WMS_TESTINFO"
Is in the format of:
FROM DATABASE.OWNER.TABLENAME ALIAS
This is normal for Crystal.
I would run that SQL in SSMS (remembering to remove all of the " first) to check that the data really is still there.
If it is, check that a filter hasn't been added to the report, via the Select Expert menu opton, to filter out all the data.
Lastly, go to Database > Set Datasource Location and re-apply the connection to ensure that the report is definitely pointing at the right location.