I have created a transformation job and running few sql query where Iam getting the output
And for the same output I have created a table in snowflake through Matillion orchestration with same output fields the query is generating results
Now how do I load data from transformation query Iam getting into orchestration table created in snowflake
You have two options here :
- You can create your Orchestration job in following order
- Create Table Component - to create the table by predefined definition
- Call Transformation job to insert data(Using Table Output component) into the table created in previous step.

- The other option is to use Rename component to tidy up the columns in your transformation job and then use Table Output to create the table after the sql query