Error Message :
Error: U02012033 Query could not be executed:
'com.microsoft.sqlserver.jdbc.SQLServerException: Unable to identify the table
select oh_client, oh_name from oh where oh_client = ? for the metadata.
When defining a SQL Secure (SEC_SQL) variable using bind parameters, there is an issue in the concatenation of the SQL Statement lines. There should be a space before the line containing the "FROM" keyword.
This statement will work:select oh_client,
oh_name
from oh
where oh_client = ?
Without space before "from" it will produce an error:select oh_client,
oh_name
from oh
where oh_client = ?