e problem I’m having: Invalid project ID
The context of why I’m trying to do this: I want to learn dbt for building data models.
What I’ve already tried: Nothing. When I click on “execute dbt SQL,” the query results show my query and everything looks fine, but when I look at the output, I get this error: Invalid project ID, and it doesn’t change my table in BigQuery.
Some example code or error messages
'with source as (
select * from {{ source(‘src_warehouse’, ‘billing’) }}
),
renamed as (
select
ACC_DAY as aktueller_Tag,
LOAD_CNT as Laden
from source
)
select *
from renamed’