Now Available On-Demand | AI. The Future of Data Engineering - Today. Not Just Tomorrow.

Watch now

Using Column Defaults with Matillion ETL for Snowflake

When you create a table in Snowflake Data Warehouse, you are in control of the schema. This means you can choose every column’s datatype: for example character, numeric or timestamp.

One of Snowflake’s features is the ability to supply a default value for columns. This is useful if you don’t know the value at runtime, and it’s also a great way to automatically add a column such as a last updated timestamp.

This article will show you how to take advantage of column defaulting with Matillion ETL for Snowflake, in the context of a dimensional model.

Data Extraction and Loading

You can find all Matillion’s data loading components in the Load/Unload panel when you are editing an Orchestration job.

 

Column Defaults with Matillion ETL for Snowflake - data extraction and loading

 

Matillion’s Load Components all work in the same way:

  • Extract data from the original source
  • Stream across the network into Matillion
  • Matillion creates a new “staging” table in Snowflake (note this is destructive: if the table exists already then it will be dropped and re-created)
  • Matillion bulk-loads the data into Snowflake

Normally, you would load a relatively small number of recently-changed records into Snowflake in this way, and then merge them into a real target table for permanent storage.

For this reason, it’s common to have multiple Orchestration jobs:

  • A “setup” job, which only needs to be run once to create the real target table
  • A periodic “load” job, which runs perhaps daily, and fetches yesterday’s updates into the “staging” table

 

Setup Jobs

These will typically use components from the DDL palette, especially the Create/Replace Table.

 

Column Defaults with Matillion ETL for Snowflake - setup jobs

 

The setup job might be as simple as the one below, which just creates a single dimension table named DIM_AIRCRAFT.

 

Column Defaults with Matillion ETL for Snowflake - setup dimension

 

Load Jobs

These can be more complex, perhaps involving sophisticated incremental loading techniques, from any supported data source. In this example, we’ll assume that the Load Job re-creates a Snowflake table named STG_AIRCRAFT_METADATA every time it’s run.

The staging table has an STG_ prefix for easy identification and contains updates for the aircraft reference dimension of a civil aviation data warehouse.

Data Transformation

After loading the new data, the next step is to copy it into the permanent target location. From the STG_AIRCRAFT_METADATA table, the data must end up being merged into the DIM_AIRCRAFT table created earlier.

This is a task for a Matillion Transformation job.

 

Column Defaults with Matillion ETL for Snowflake - transformation

 

The above example uses a Table Input component to read from STG_AIRCRAFT_METADATA, and a Table Update component to merge the data into the target table DIM_AIRCRAFT.

This is an example of a ‘type 1 slowly changing dimension‘, in which updates simply overwrite existing values.

Automatic audit metadata

No transformation is necessary at all to do this! Instead, you can rely on Snowflake’s column defaults. This is a great way to automatically set a metadata column such as the last updated timestamp.

In the Setup Job, be sure to add a Default Value for the last updated column. This will automatically be applied at runtime.

 

Column Defaults with Matillion ETL for Snowflake - automatic audit metadata

 

Then, in the column mapping of the Matillion Table Update component, be sure to not include the timestamp column.

 

Column Defaults with Matillion ETL for Snowflake - column mapping

 

After running the transformation, you should find the default has been applied to every LAST_UPDATED value.

 

Column Defaults with Matillion ETL for Snowflake - last update

 

One thing to notice about the timestamps is that, for one set of input data, all the timestamps will be identical down to the millisecond. That’s because of Matillion’s pushdown ELT mechanism: all rows are handled at exactly the same time.

Applying column defaults

Columns which may have a value at runtime require slightly more attention. Snowflake’s column defaults do not apply if you explicitly map a column and it contains null values.

Instead, it’s necessary to add a Calculator component to provide the default values. This can easily be done using a COALESCE statement like this:

 

Column Defaults with Matillion ETL for Snowflake - applying column defaults

 

The Calculator always adds new columns to the schema, so you will need to change the mapping in the Matillion Table Update component to use the transformed columns instead.

 

Column Defaults with Matillion ETL for Snowflake - transformed columns

 

Now, after running the transformation, you will see default values appearing in all places where they were missing from the original source system.

 

Column Defaults with Matillion ETL for Snowflake - sample

 

Begin your data journey

Want to try out Matillion ETL for Snowflake? Arrange a free 1-hour demo now, or start a free 3-day test drive.

Free 1-hr Demo
Free 3-day Test Drive