Hi all,
I'm trying to fix a workflow that hasn't been running as it should. The workflow inputs data from an Azure SQL DB using ODBC connection. The connection appears to fine (at least from what I can tell) as I can access the visual query builders to see the tables in the database and write the SQL query in input from my desired table.
However, the issue is when I run the workflow, I get various errors each time like the following:
Error SQL Execute: [Microsoft][ODBC SQL Server Driver][SQL Server]Cannot bulk load because the file "XXXX.csv" could not be opened. Operating system error code 12(The access code is invalid.)
OR
Error SQL Execute: [Microsoft][ODBC SQL Server Driver][SQL Server]Cannot bulk load because the file "XXXX.dbo.XXX" is incomplete or could not be read. Operating system error code 12(The access code is invalid.)
I have done a few tests like updating the SQL query to input only the top 10 records from the table and this runs fine with no errors. The workflow fails every time I try to select all records from the table (e.g. select * from table)
Any help would be appreciated