BigQuery data organization

Introduction to BigQuery

Matt Forrest

Field CTO

BigQuery table names

SELECT 
    *
FROM
    `project.dataset.table`
Introduction to BigQuery

Projects

  • Projects handle permissions, users, and controls
  • BigQuery can have multiple projects
SELECT 
    *
FROM
    `project.dataset.table`
Introduction to BigQuery

Datasets

  • Datasets are unique to a project
  • Act like folders that contain individual tables
  • Datasets have their own permissions
SELECT 
    *
FROM
    `project.dataset.table`
Introduction to BigQuery

Tables

  • Tables are where your data resides
SELECT 
    *
FROM
    `project.dataset.table`
Introduction to BigQuery

Regions

Map indicating the cities and regions that are covered by Google Cloud data centers

Introduction to BigQuery

Working with data between regions

  • Datasets cannot change regions once created
  • There are methods to move/replicate data between regions
  • You cannot query data in two different regions
Introduction to BigQuery

Let's practice!

Introduction to BigQuery

Preparing Video For Download...