Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a limit to the number of tables allowed in bigquery

Is there a limit to the number of tables I can have in BigQuery? I'm trying to create multiple small tables to reduce query costs. Thanks!

like image 774
user1958699 Avatar asked Jan 08 '13 17:01

user1958699


3 Answers

Now it's:

Maximum number of tables referenced per query — 1,000
Maximum unresolved legacy SQL query length — 256 KB
Maximum unresolved standard SQL query length — 1 MB
Maximum resolved legacy and standard SQL query length — 12 MB

https://cloud.google.com/bigquery/quotas

like image 53
Afanasii Kurakin Avatar answered Sep 28 '22 08:09

Afanasii Kurakin


There is no limit to the number of tables. You might have problems querying them all since there is a 10k limit to the length of a query string.

like image 22
Vukasin Toroman Avatar answered Sep 28 '22 09:09

Vukasin Toroman


There is no limit in number of tables you can create. If you have more than a few thousand tables, listing a dataset may be slow (and opening the UI might be slow), but otherwise you can create as many tables as you need.

like image 30
Jordan Tigani Avatar answered Sep 28 '22 08:09

Jordan Tigani