BigQuery
Steps
1. Enable Cloud Resource Manager API
2. Create dedicated datasets
CREATE SCHEMA IF NOT EXISTS `project-name.mics_workspace`
OPTIONS (
location = 'EU',
description = 'Working schema for mediarithmics'
);
CREATE SCHEMA IF NOT EXISTS `project-name.mics_output`
OPTIONS (
location = 'EU',
description = 'Output schema for mediarithmics'
);3. Service account creation and permissions


Grant access
4. Generate a credentials JSON file

Last updated
Was this helpful?