Bind Variable Errors
The table below shows the possible bind variable errors and how to correct them.
Error Message | Recommended Action |
---|---|
This SQL may not contain more than 9 bind variables. | Currently the application is limited to having 9 bind variables in the SQL statement. Modify the SQL statement and remove the required number of bind variables to reduce the total to 9. Filters can be used to further limit the data returned by the query. |
Alias is invalid. An Alias may not consist entirely of all uppercase characters and numbers or contain underscores. | In order to correctly process a database field alias it must conform to a specific standard. It may not contain the underscore character and must not consist of only uppercase letters and numbers. Edit the alias names to conform to the required standard. |