How to dynamically use upsert in ADF to an Azure SQL database
Inside of my pipeline, I'm running a lookup to gather tables from one database to transfer to another. select table_schema,table_name from information_schema.tables where table_schema = 'schema1' OR TABLE_SCHEMA = 'schema2' Then I do a copy activity for each of those…