Ephemeral Materialization
Ephemeral Materialization
Working with Ephemeral Models
-- models/intermediate/clean_customer_data.sql
{{
config(
materialized='ephemeral'
)
}}
SELECT
customer_id,
TRIM(first_name) as first_name,
TRIM(last_name) as last_name,
LOWER(email) as email
FROM {{ ref('raw_customers') }}When to Use Ephemeral Models
Configuration
Performance and Usage Guidelines
Advantages
Limitations
Last updated
Was this helpful?