I had a similar question last year but there was one system/server (Teradata).
Today, for this question, I have two different systems/servers: Microsoft SQL Server and Teradata.
My first input comes from SQL Server where I have 50 records:
SELECT *
FROM dbo.table1
In this table (dbo.table1) I have e.g. 20 "model_numbers" and now I need to bring some additional fields from another server and table (Teradata) but this table has more than 30 million records. I would like to avoid input/load all records from the Teradata table and would like to create a condition in Teradata input WHERE "model_numbers" (from Teradata) will bi IN ("model_numbers" from SQL table).
SELECT *
FROM ted.table2
WHERE model_numbers IN (SELECT DISTINCT model_numbers FROM dbo.table1)
Is this possible to achieve in Alteryx when we have two different systems/servers?
Thank you in advance.