DBT Stripe Package, Schema Duplication in Snowflake

155 Views Asked by At

I am using the following DBT Package provided by Fivetran: https://hub.getdbt.com/fivetran/stripe/latest/

When the models are processed using dbt run we duplicate the schemas in snowflake:

  • Stripe
  • Stripe combined data
  1. stripe_combined is how we named the schema in dbt_project.yml
  2. But once the operation is processed it seems to create an additional Schema titled Stripe with the exact same data in snowflake

One thing to note is that in our model's section in dbt_project we state the schema name

 stripe:
    materialized: table
    +schema: stripe_combined
0

There are 0 best solutions below