Hi Community, Another issue we are facing with res...
# contributing-to-airbyte
a
Hi Community, Another issue we are facing with respect to adding transformation. We created a transformation and locally its running fine
dbt run --vars '{"prefix": ""}' --select Products Orders Customers
but upon executing the same in airbyte, it's removing single quotation mark, and hence it's failing.
Hi @Aakash Kumar, did you try to to set this variable in
dbt_project.yml
as a workaround?
Did you also try
"{'prefix': ''}"
?
d
Hi @[DEPRECATED] Augustin Lafanechere. Based on our use case, we cannot set variables in dbt_project.yml. What did worked after a lot of exploration dbt run --vars ‘{“prefix”: “”}’ --method Products Orders Customers
you must remove spaces