'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



Solution 1:[1]

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`;

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Artur