Hi,
When I tried to save conversation in mssql DB, I was facing the error message shown below:
Error happened when trying to save conversation tracker to 'SQLTrackerStore'. Falling back to use the 'InMemoryTrackerStore'. Please investigate the following error: (pyodbc.OperationalError) ('08S01', '[08S01] [Microsoft][ODBC Driver 17 for SQL Server]TCP Provider: Error code 0x68 (104) (SQLExecDirectW)')**
**[SQL: SELECT events.id AS events_id, events.sender_id AS events_sender_id, events.type_name AS events_type_name, events.timestamp AS events_timestamp, events.intent_name AS events_intent_name, events.action_name AS events_action_name, events.data AS events_data **
**FROM events, (SELECT max(events.timestamp) AS session_start **
**FROM events **
**WHERE events.sender_id = ? AND events.type_name = ?) AS anon_1 **
**WHERE events.sender_id = ? AND (events.timestamp >= anon_1.session_start OR anon_1.session_start IS NULL) ORDER BY events.timestamp]**
**[parameters: ('29:1lPi6gVoVeRMRs1igw638mX9b0zr_BxSsEnqmO3YISb3HlL9tpq5bp59Ytb8nRf0NuNn0E6hMWJIKDStTAmzuxw', 'session_started', '29:1lPi6gVoVeRMRs1igw638mX9b0zr_BxSsEnqmO3YISb3HlL9tpq5bp59Ytb8nRf0NuNn0E6hMWJIKDStTAmzuxw')]**
**(Background on this error at: https://sqlalche.me/e/14/e3q8**).
Here is my configuration in “endpoints.yml”:
Can anyone shed some lights on how to solve this? or is there any mistakes I made in the configuration? Much appreciated!