Hi!
I recently installed ReportServer on Ubuntu machine, using Apcache Tomcat as webserver.
In ReportManager I create simple Dinamic List report using PostgreSQL Data Source with integer parameter (select * from dummy_table where dummy_id = ${key1})
Then I import this report in Teamspace and everyting works fine, parameter is there and data is displayed as well. But when I activate pivoting mode, chose some fields then i see error “PSQLException: ERROR: invalid input syntax for type numeric: “” Position: 117”
If I not use parameters then pivoting works perfectly
If I create following manipalation with parameter in query also works perfectly select * from dummy_table where dummy_id = CAST((‘0’ || COALESCE( ${key1} ,‘0’)) AS INTEGER)
this manipulation is not working on date parameters though
I tried exactly the same report using MySQL Data Source - everything works as expected.
I tried also several versions of Postgre JDBC drivers not helped
My PostgresSQL DB version 9.3.5
My RS version: RS2.2.1-5602 2014-12-17-20-23-49
Will be very pleased with any help, Thanks in advance!