Error on ODBC client -- [SN][ODBC ServiceNow driver][OpenAccess SDK SQL Engine]Cannot create schema. The table has not been found in the DB schema [tableName=INCIDENT].The table might not exist in the database or the table ACLs prevent user access to it.Issue Connectivity to the ServiceNow instance from an ODBC client through oracle database gateway is achieved. However, when trying to query any table it's throwing below error.ORA-28500: connection from ORACLE to a non-Oracle system returned this message:[SN][ODBC ServiceNow driver][OpenAccess SDK SQL Engine]Cannot create schema. The table has not been found in the DB schema [tableName=INCIDENT]. The table might not exist in the database or the table ACLs prevent user access to it. Hop on the instance, navigate to Tables, find the requested table and if it is there check ACLs.[1050] {HY000,NativeErr = 1050}ORA-02063: preceding 2 lines from SERVICENOW_LINK STEPS TO REPRODUCE:1. Install and configure ODBC driver as per ServiceNow documentation.2. Install and configure oracle database gateway and configure it with ODBC driver.3. Configure listener and tnsnames files.4. Query from SQL developer plus to query incident table in ServiceNow.5. It will throw below error.ORA-28500: connection from ORACLE to a non-Oracle system returned this message:[SN][ODBC ServiceNow driver][OpenAccess SDK SQL Engine]Cannot create schema. The table has not been found in the DB schema [tableName=INCIDENT]. The table might not exist in the database or the table ACLs prevent user access to it. Hop on the instance, navigate to Tables, find the requested table and if it is there check ACLs.[1050] {HY000,NativeErr = 1050}ORA-02063: preceding 2 lines from SERVICENOW_LINK ReleaseAll VersionsResolutionYou have already gone through: https://support.servicenow.com/kb?id=kb_article_view&sysparm_article=KB0595630 If the above KB does not fix the issue, it is most likely related to the user's role being used to set up the ODBC(Open Database Connectivity). As mentioned in the below article:https://support.servicenow.com/kb?id=kb_article_view&sysparm_article=KB0870510Provide proper ODBC(Open Database Connectivity) role to the user used to create the schema and it should fix the issue. Please confirm the following: --> Test the DB Connection. --> Update "glide.cache.size.syscache_tabledescriptor" as in to 10k. https://support.servicenow.com/kb?id=kb_article_view&sysparm_article=KB0538954 https://support.servicenow.com/kb?id=kb_article_view&sysparm_article=KB0598029 --> Make sure all the properties are configured properly.--> Test Connection is successful.--> Current error message while sending a query is. --> ODBC Driver version is 2.2. If you have made sure of all the above tests & yet you were unable to execute the query from the SQL environment through ODBC, the problem is with the query you are making. Please make sure you enclose the Table name & Field name in the SQL query with quotations. If they are not enclosed, the system will not be able to identify them as tables/fields in the ServiceNow environment and as a result, it is send a response stating that the user doesn't have access to such tables/fields.