Missed the Q4 Fall Release Product Update? Watch the on-demand webinar for more info on the latest in Designer 24.2, Auto Insights Magic Reports, and more!
Free Trial

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

Running pure update on SQL table

dralban
7 - Meteor

I have SALES table with millions of records, and SALES_ORG table that has sales reps, their managers, etc. Once a record is updated in SALES_ORG table, I need to update all records with new values in SALES table. Here is a simple SQL Update query that accomplishes this perfectly:

 

UPDATE A
   SET SR_NAME = B.SR_NAME,
       SM_NAME = B.SM_NAME,
	   DIR_NAME = B.DIR_NAME
FROM DM.SALES A
   INNER JOIN DM.SALES_ORG B ON A.CUST_ID = B.CUST_ID;

 

Database is SAP HANA if that matters.

 

I've looked everywhere, and I can't figure out a way to do it in Alteryx without having to create a temporary table, which is not feasible. I have a scheduled workflow that loads SALES_ORG, and would like to add the update process to the workflow. Thanks for any help!

1 REPLY 1
Labels
Top Solution Authors