Hello! Can I trigger a dbt transformation in the d...
# troubleshooting
e
Hello! Can I trigger a dbt transformation in the destination database (loader) without using data extraction (tap)?
1
d
Yep. Should just be
meltano invoke dbt-dbtype
2
e.g. I run
Copy code
meltano invoke dbt-postgres
If you want to run just one transform, use the
--select
option.
e.g.
Copy code
meltano invoke dbt-postgres --select mymodel
e
Thx! It's worked
🎉 1