first of all, it's my first experience working with Azure.
I have a task: Displaying (created\updated\ deleted ) entries from Azure SQL in handy view on Azure portal.
After a small investigation I've found out: Finding changes in the database is handled by the "Change Data Capture" mechanism(CDC). I've used it and now I have separate tables with the changes.
The next step to resolve the initial task is to send this data to Azure portal. I the internet I've found the guide
As I understood we just load data to blob (create a container and upload to here) and it will be a simple csv or another format text file.
If you know the way how to upload data to blob, please share with me.
And the last step is showing this file contents in useful tables, where I can select the filter option for example. How can I do this?