The table in Big Query says that it partitioned table but data is not getting stored in different tables based on date.
1 Answers
1
votes
What you are looking for is not partitioning; when BigQuery shows tables with a date picker in this fashion it is because they are sharded.
To shard a table give it the same name, with a different date suffix, for example:
my_data_20210101andmy_data_20210102will be sharded.my_data_20210101andmy_data_2_20210101will NOT be sharded.
See the official docs here: https://cloud.google.com/bigquery/docs/partitioned-tables#dt_partition_shard