Hello,
I currently use 2023.2.1.194 Patch: 5, but I have seen this behavior in prior versions. Basically, an Input tool using an ODBC connection to an MS SQL server database, running a standard select query, will work fine for many runs, then will suddenly start hanging on subsequent runs. No errors or anything, the tools just initializes and then never completes the query.
I cant find any reasoning for this, no changes to workflow, no changes to database, the same query runs perfectly fine executed in SSMS, it just hangs and never completes in Alteryx. But what I do find ends up resolving the issue is using union to append dummy rows, e.g.
Select a,b,c from table
union
Select null,null,null
Once I add the the dummy union, the input tool completes as expected.
Has this issue been identified by the dev teams? It is quite frustrating to have users report issues with the workflows only to have to go in and append some dummy row to make the input tools work again.