In the BigQuery CLI (bq), when specifying a dataset with a project prefix, you should use a dot (.) instead of a colon (:). Using a colon is an older legacy format that can throw errors depending on your gcloud environment version.
Change it to:
Bash
!bq rm -r -f $PROJECT_ID.housing_dataset
In the BigQuery CLI (bq), when specifying a dataset with a project prefix, you should use a dot (.) instead of a colon (:). Using a colon is an older legacy format that can throw errors depending on your gcloud environment version.
Change it to:
Bash
!bq rm -r -f $PROJECT_ID.housing_dataset