https://github.com/timvw/dbt-tools
Tooling for dbt
https://github.com/timvw/dbt-tools
Last synced: 3 months ago
JSON representation
Tooling for dbt
- Host: GitHub
- URL: https://github.com/timvw/dbt-tools
- Owner: timvw
- License: apache-2.0
- Created: 2023-10-17T19:05:45.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-26T21:18:17.000Z (over 1 year ago)
- Last Synced: 2025-01-01T12:22:21.145Z (5 months ago)
- Size: 8.79 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dbt-tools
Collection of [macros](#Macros) and [materializations](#Materializations) for dbt.
## Installation Instructions
[Read the docs](https://docs.getdbt.com/docs/package-management) for more information on installing packages.
```yml
packages:
- git: "https://github.com/timvw/dbt-tools.git"
revision: main
```## Macros
* [Debugging](#debugging)
* [debug_print (source)](#debug_print-source)
* [debug_run (source)](#debug_run-source)### debug_print ([source](macros/debug_print.sql))
Prints the compiled SQL.
**Usage:**
```bash
dbt run-operation debug_print --args '{macro: genius}'
```### debug_run ([source](macros/debug_run.sql))
Executes the compiled SQL.
**Usage:**
```bash
dbt run-operation debug_run --args '{macro: genius}'
```## Materializations