BigQuery executing only one query

I try to run a request in the user interface, but I get an error:

Error: 6.1 - 0.0: Only one request can be executed at a time.

I do not think there are other running queries, and this has been going on for some time. Surely he can handle more than one request at a time? How long does it get stuck? How to disable and re-enable bigquery: p

enter image description here

+5
source share
1 answer

This error means that the query string was parsed as containing several queries. Ensure that there are no multiple top-level SELECT in the query text box.

From a specific post, I would suggest that your second request starts on line 6 or around.

+2
source

Source: https://habr.com/ru/post/1206624/


All Articles