csm2867
csm2867

Reputation: 37

Is the Export to BigQuery Table function not working?

you guys have any idea why I can't export query results to BQ table? I am using the $300 credit trial account. After I click Export the icon keeps spinning without saving the results. Is the export function currently not working? Thanks!

enter image description here

Upvotes: 1

Views: 194

Answers (1)

Aku
Aku

Reputation: 802

Ok, we suddenly had the same issue in our team as well.
This issue should be googles fault.
A quick way around is to use a sql-statement to create a table in combo with the query to make a table in BigQuery, like:

CREATE TABLE `dummy_project.dummy_dataset.new_table` AS

SELECT
  variable1,
  variable2,
  variable3
FROM
  `dummy_project.dummy_dataset.old_table`;

Upvotes: 0

Related Questions