Is it possible to add partitions dynamically instead of fixed to specific static data. For example, if we need to create partitions for all dates from different CSV records.
1
votes
2 Answers
1
votes
You have to create the partition using ALTER TABLE ADD PARTITION explicitly (after creating the partitioned table) today. So the current suggestion is to look at all distinct dates of your data and generate the ALTER statement programmatically.
I suggest you add a request to http://aka.ms/adlfeedback for a more dynamic partition generation.