We are currently testing a custom database server with Business Objects 12 and are encountering a problem.
For historical reasons the system creates column names containing the originating table when processing join queries, so select * from table1 inner join table2 would result in columns
“table1.field1”, “table2.field2”
My issue is that the Business Objects universe designer sees the full stop/period character within these table names and correctly identifies that they need to be quoted, but instead of an ANSI-SQL double quote character, it is applying a backtick character on subsequent queries.
select derived_table.table1.field1 from (select * from table1 inner join table2) derived_table
We support ANSI-SQL and do not recognise the backtick as a valid identifier quote character.
We are working to remove the period characters but as a shorter term solution I’d appreciate it if anyone is aware of a way to configure the Business Objects system to use double-quotes as field identification characters rather than backticks. I have examined the Universe parameters reference and can not see any way of configuring this setting.
Yes I have created a new universe and set ANSI92 parameter to yes. As far as I can see from the documentation this only affects the use of ANSI JOIN syntaxes and not identifier quoting characters.
in the ODBC connection properties (SQLGetInfo) for all connections which should tell any connecting applications to use the double quote for identifiers. BO seems to be ignoring this parameter and using backticks and I can find no way to override this.