While creating my project, I have provided a default schema name from Snowflake to work in the project, let’s call it DEFAULT_SCHEMA,
I tried updating the schema to a different one for SEEDS in dbt_project.yml,
SEEDS:
PROJECT_NAME:
+SCHEMA: SEED_SCHEMA_NAME
However, when I run DBT Seed command, DBT instead created a new SCHEMA as:
DEFAULT_SCHEMA_SEED_SCHEMA_NAME
Is there any other property I need to override?