Reputation: 365
I have created a table from Google Cloud Storage (filepath starts with gs://). I could not create it as native even after trying multiple times. I succeeded only after setting the table option as native. Later, I was able to query this table successfully. However, I need to do the following:
Questions: Since this is an external table, can I add a column? Can I save the joined table as native?
Upvotes: 2
Views: 3799
Reputation: 14791
Yes, you can convert an external table (or federated source) to a native table in BigQuery.
To do this, simply read the external table using SQL and set the destination table for the results. BigQuery will then write the results of your query to a native table.
Upvotes: 4