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
stripe_combined
is how we named the schema in dbt_project.yml- 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