Closed M4Al closed 6 months ago
this is how dbt handles custom schemas by default. see dbt docs https://docs.getdbt.com/docs/build/custom-schemas#how-does-dbt-generate-a-models-schema-name link also includes guidance on how to change the default behavior if needed.
Thanks for the link. Must have missed it when researching this feature.
Excuses for the dummy issue.
I have a normal profile with a specific schema mentioned 'silver'
In my model I add some config to write it away in another schema
{{ config( materialized="table", schema="gold" ) }}
The result is that a table is created silver_gold.dimFinancialCompanyName instead of the expected gold.dimFinancialCompanyName.
Not sure if this is an adapter issue of a core dbt feature though.