I have 20 csv file stored in Google Cloud Storage in 1 folder and i would like to to create the tables in BigQuery for each of the tables. The 20 csv files are all named differently, I try to automate the load process so i avoid using the BigQuery UI to load it one by one.
Is there anyway i can load and create all 20 tables at the same time ?
I tried the following in Cloud Shell but obviously it only load 1 table at a time. Any help much appreciated !
bq load \
--autodetect \
--source_format=CSV \
--replace \
sandbox.Bq_load_Test \
gs://bucket/folder/xxx.csv