Good day everyone! Is there a way to perform a `d...
# troubleshooting
s
Good day everyone! Is there a way to perform a
dbt run --select
statement INSIDE a run or job command? I keep getting the error
--select
not found
r
Have you tried modifying the
dbt:run
command in your
meltano.yml
, or creating a new command like
dbt:run-select
? That way, you can invoke the command using
meltano run
.
Copy code
meltano run tap-google-analytics target-postgres dbt:run-select
s
No I haven't, I've never created a command before; how does that look in the .yml?
t
this is a handy way to store any CLI arguments in a nice alias 🙂
r
Beat me to it @taylor 😅
v
works well, thanks!