Executing Ephemeral dbt Models

Lab Steps

lock
Understanding Ephemeral dbt Models
lock
Connecting to the dbt Web IDE
lock
Creating dbt Models Using Ephemeral Materialization
lock
Executing Ephemeral dbt Models
Need help? Contact our support team

Here you can find the instructions for this specific Lab Step.

If you are ready for a real environment experience please start the Lab. Keep in mind that you'll need to start from the first step.

Introduction

In this lab step, you will execute the dbt models you previously defined and check that the ephemeral model is leveraged by the full-refresh model but not stored in the database.

 

Instructions

1. Open the terminal by clicking on Terminal -> New Terminal:

alt

 

2. Move into the dbt project folder by entering the following command:

Copy code
1
cd ca_dbt_project

 

3. Execute the following command to build the dbt project:

Copy code
# The export command is needed to let dbt know the profiles file is in the current directory
export DBT_PROFILES_DIR='.'
dbt run

After a few seconds, dbt will complete the execution with an output similar to the following:

alt

As you can see, no model named int_more_two_orders has been created. That's because the ephemeral model has been included in models that leveraged it as a CTE and not stored in the database.

 

4. Execute the following command to log into the database:

Copy code
1
psql -U postgres -d ca_dbt

 

5. Enter the following command to list out the available tables in the schema that dbt uses for the outputs:

Copy code\dt dbt_outputs.*

alt

As you can see, only the f_orders_avg_discount_yearly full-refresh model has been materialized.

 

6. Enter the following SQL query to make a query on the f_orders_avg_discount_yearly table:

Copy code
1
select * from dbt_outputs.f_orders_avg_discount_yearly order by year;

alt

 

Summary

In this lab step, you executed the dbt models you previously defined and checked that the ephemeral model is leveraged by the full-refresh model but not stored in the database.

Validation checks
1Checks
Executed the dbt Models

Check whether the dbt models have been executed.

Data build tool (dbt)