Invalid Project ID

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’

Hey @alihan.a002, I’ve spotted some other articles regarding this error. Have you checked that your project ID adheres to the following rules?

A project ID has the following requirements:

  • Must be 6 to 30 characters in length.
  • Can only contain lowercase letters, numbers, and hyphens.
  • Must start with a letter.
  • Cannot end with a hyphen.
  • Cannot be in use or previously used; this includes deleted projects.
  • Cannot contain restricted strings, such as google, null, undefined, and ssl.

Taken from: Créer et gérer des projets  |  Resource Manager Documentation  |  Google Cloud.