I have data in BigTable and want to do some checks on the quality.
How can i create an (external) table in BigQuery to do these checks, using SQL.
I have data in BigTable and want to do some checks on the quality.
How can i create an (external) table in BigQuery to do these checks, using SQL.
Copyright © 2021 Jogjafile Inc.
As always, the devil is in the details.
typeandencodingcorrectly in the columnFamilies. Right now I'm using the defaults.You can create your external table as follows:
Info on how to create and query a bigtable external table:
https://cloud.google.com/bigquery/docs/create-bigtable-external-table#create-external-table
Info on
bigtable_optionscan be found here:https://cloud.google.com/bigquery/docs/reference/rest/v2/tables#bigtableoptions
Info on option
columnFamilycan be found here:https://cloud.google.com/bigquery/docs/reference/rest/v2/tables#bigtablecolumnfamily
Info on
columnsof the columnFamily can be found here:https://cloud.google.com/bigquery/docs/reference/rest/v2/tables#bigtablecolumn
Related questions: