Welcome to your new dbt project!
Try running the following commands:
- dbt run
- dbt test
- Learn more about dbt in the docs
- Check out Discourse for commonly asked questions and answers
- Join the chat on Slack for live discussions and support
- Find dbt events near you
- Check out the blog for the latest news on dbt's development and best practices
- ~/.dbt/profiles.yml
-
dbt init dbt_project_name
-
dbt debug
-
dbt build
-
dbt run --select stg_flights__aircrafts
-
Build dbt Model: > Executing task: dbt build --select stg_flights__aircrafts --project-dir /Users/nijat/fun/dbt-demo/dbt_course_practice --profiles-dir /Users/nijat/.dbt
-
dbt source freshness
-
dbt build --select stg_flights__bookings --log-level debug
-
dbt build --select stg_flights__bookings --log-level debug --full-refresh (if add new columns)
-
dbt docs generate
-
dbt docs serve
dbt run — Runs the models you defined in your project
dbt build — Builds and tests your selected resources such as models, seeds, snapshots, and tests
dbt test — Executes the tests you defined for your project
-
dbt build -s stg_flights__bookings --full-refresh
-
dbt seed -s city_region
-
dbt run --select city_region+
-
dbt build --select city_region+
-
dbt seed --full-refresh
-
export DBT_DB_PORT='4001'
-
run dbt macros: dbt run-operation drop_old_relation
-
run dbt macros with param:dbt run-operation drop_old_relations --args '{"dryrun": False}'
-
dbt dept [after adding dbt packages]
- dbt test --select "source:*"
- dbt compile -s stg_flights_seats
-
dbt run -s +fct_flight
- dbt run -s fct_flight+
-
dbt run -s n+fct_flight
-
dbt run -s @fct_flight
- dbt test -s "fct_flights,test_type:unit"