CREATE OR REPLACE TEMP TABLE in a script error: “Exceeded rate limits: too many table update operations for this table.”
问题 This script gives me an error after ~11 steps: DECLARE steps INT64 DEFAULT 1; LOOP CREATE OR REPLACE TEMP TABLE countme AS (SELECT steps, 1 x, [1,2,3] y); SET steps = steps+1; IF steps=30 THEN LEAVE; END IF; END LOOP; Exceeded rate limits: too many table update operations for this table. For more information, see https://cloud.google.com/bigquery/troubleshooting-errors Even if this is a temp table - what can I do instead? 回答1: Instead of using a TEMP TABLE , hold the results on a temp