I have a few date-sharded tables I want to delete but they already have more than 100 shards for each table and can’t drop them manually.
I’ve tried using wildcards
JavaScript
x
2
1
DROP TABLE my_dataset.my_table_*;
2
but it does not seem to work.
I finally used the python API:
JavaScript
1
4
1
for table_id in tables:
2
table_ref = client.dataset(dataset_id).table(table_id)
3
client.delete_table(table_ref)
4
And it works, but I needed to create the tables array with the names of the tables I wanted to drop.
Is there a way to DROP all date-shards of a date-sharded table in BigQuery form the UI?
Or using an SQL command in the UI?
Or using the command line with a wildcard?
Thanks
Advertisement
Answer
And what about instead of creating the tables array (with the names of the tables) you use…
JavaScript
1
13
13
1
from google.cloud import bigquery
2
client = bigquery.Client()
3
dataset_ref = client.dataset('my_dataset')
4
5
tables = list(client.list_tables(dataset_ref)) # API request(s), now you have the list of tables in this dataset
6
queried_tables=[]
7
for table in tables:
8
print(table.table_id)
9
if table.table_id.startswith("your_favourite_prefix"): #will perform the action only if the table has the desired prefix
10
queried_tables.append(table.table_id)
11
12
print(queried_tables) #the list of the desired tables names, now you can use your script to delete them all
13