Determining if your ODBC driver is working correctlyIssue <!-- div.margin{ padding: 10px 40px 40px 30px; } table.tocTable{ border: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .6em; padding-bottom: .6em; padding-left: .9em; padding-right: .6em; } table.noteTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:2; } table.internalTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:0; } .sp td{ border-bottom: 1px solid; border-right: 1px solid; border-color:#E0E0E0; background-color: #ffffff; height: 20px; padding-top: .5em; padding-bottom: .5em; padding-left: .5em; padding-right: .5em; } .sphr td{ border-right: 1px solid; border-bottom: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .5em; padding-bottom: .5em; padding-left: .5em; padding-right: .5em; height: 20px; } .title { color: #D1232B; font-weight:; font-size:25px; } .hd1{ color: #D1232B; font-weight:; font-size:18px; } .hd2{ color: #646464; font-weight:bold; font-size:16px; } .hd3{ color: #7a7a7a; font-weight:; font-size:16 px; text-decoration:; } .hd4{ color: #000000; font-weight:bold; font-size:14 px; text-decoration:; } --> Determining if your ODBC driver is working correctly Symptoms Cannot connect to the instanceError message received during processingQueried information lostConnection dropped CauseThe ODBC driver may not appear to be working correctly because too many records are being pulled in a query, there are missing ACLs, or a 3rd party application is interfering with the query. Resolution <!-- p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 14.0px Calibri} --> First, test the ODBC driver. To do this, create the system DSN in the ODBC driver and click the Test Connection button. Details on how to test the ODBC Driver can be found here. Try running a test query that returns only one record from a table, such as a single incident. To do this, run select short_description from incident where number=‘<existing_incident_number>’; and put the incident number you are sure exists on your instance instead of <existing_incident_number>. This shows if the driver is running correctly, regardless of ACL issues or number of records. Note: The ODBC driver is not designed to pull a lot of data at a time, so any queries you run should account for this. If testing a single record does not work, try running the same query and excluding 3rd party applications. To determine if the ODBC driver is working correctly by excluding 3rd party applications, follow these steps: Open ISQL (this comes with the ServiceNow ODBC Driver).Connect to the instance using the steps identified in Running Interactive SQL (ODBC) in the ServiceNow product documentation.If you have special characters in your username or password, use the following:Customconnect "DSN=your_dsn_name; UID=username;PWD=password"Issue a SELECT statement to retrieve the records you are pulling in through your specific application. <!-- p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 13.0px Arial} -->