source venv/bin/activate
set -a && source .env && set +a && dbt parse
The default behaviour: dbt adds the default schema name defined in profiles.yml before the schema name. if we want to load data in raw_stage as defined in dbt_project.yml, and our default schema defined in public, then dbt will try to load the data to public_raw_stage schema. To override, add a macro.
dbt seed --select olist_orders it infers the schema from the data in the csv file automatically, or you can define the schema for seeds in dbt_project.yml under seeds. The name of the csv file is what will be the name of the database table.
dbt run --select stg_orders