I have a table in SQL with column name "source" and has values A, B, C. I want to delete records with source C every time I run Alteryx flow. Once deleted, Again I have to append fresh excel file into SQL table for source C every time I run. Total number of records are 500,000.
I connected excel using "Input tool" and sql table using "output tool" . Then used Pre SQL query on output tool "delete from [tablename] where source = 'C' " and selected "Append Existing" in output option. But it is taking more than 7 hours to run and not deleting the records. Also it is not appending fresh records.
Can someone please help?