ODBC Error -Error: Connector reply error. Cannot execute the query.Socket error[1111]Issue Error:ODBC Error -Error: Connector reply error: SQL##f - SqlState: S1000, ErrorCode: 1111, ErrorMsg: [SN][ODBC ServiceNow driver][OpenAccess SDK SQL Engine]Cannot execute the query.Socket error[1111] while trying to connect (Any third party tool) Qlik to servicenow. 1. User fires a query to the ODBC Driver.2. ODBC Driver converts the Sql Query to an encoded query. Eg : active=true^assignment_group=3af37736db1b5b4054250b55ca9619b9 - this is an encoded query.3. Once converted to encoded query, a SOAP call is made to SOAP Processor. This SOAP Processor accepts the encoded query.4. This SOAP Processor and components below it - in the platform layer create Sql based on the shards, perform queries and get the data. =>Ideally error 1111 indicates an error with the SQL query and the socket error is indicating a closed socket... CauseThe issue could lie in the sql query when a query is run to retrieve larger amount of data.Resolution=>Ideally error 1111 indicates an error with the SQL query and the socket error is indicating a closed socket. =>The data is being pulled as expected when the number of records are lesser in number.=>The issue is due to the fact that we are pulling the whole data in a single go and its advisable to pull the data in chunks by updating the sql queries. =>Update the sql query to fetch the data in chunks so that the issue can be eliminated. Related Links=>Review the timeout property - glide.soap.request_processing_timeout.odbc =>Additional for debugging we need to enable the SOAP debug and for that please add the property - glide.processor.debug.SOAPProcessor =>Version of ODBC Driver needs to be validated for compatability.