dbt Model Transformation - Manage Data Warehouses | Online Free DevTools by Hexmos
Transform data warehouse models with dbt. Streamline data transformations and automate workflows for efficient data analysis. Free online tool, no registration required.
dbt
A tool to model transformations in data warehouses. More information: https://github.com/dbt-labs/dbt-core.
- Debug the dbt project and the connection to the database:
dbt debug
- Run all models of the project:
dbt run
- Run all tests of
example_model:
dbt test --select example_model
- Build (load seeds, run models, snapshots, and tests associated with)
example_modeland its downstream dependents:
dbt build --select example_model+
- Build all models, except the ones with the tag
not_now:
dbt build --exclude "tag:not_now"
- Build all models with tags
oneandtwo:
dbt build --select "tag:one,tag:two"
- Build all models with tags
oneortwo:
dbt build --select "tag:one tag:two"