Reputation: 37
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!
Upvotes: 1
Views: 194
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