Hello
My data is on greenplum DB, I’m using the following connection sting to create a new data source
jdbc:postgresql://192.168.1.41/data?searchpath=2016-data
data is the DB and 2016-data is the schema where my data is
The problem is that when I write the sql for my queries/reports if I do not use the notation schema.table or schema.table.column
Reportserver does not return any result
I also tried to specify the path in the query itself
search_path=2016-data;
select * from etc;
Again no luck
The only way to get results is to use the schema.table etc. unfortunately this add quite a bit of complexity as we have some very long and elaborated queries with many dozens of tables and hundreds of columns etc
Any idea on what I could do to be able to avoid the schema.table notation?
Thanks heaps
Mark