Thanks for posting your question in the Microsoft Q&A forum.
However, there are several practical methods to export your data for backup purposes:
Continuous Export to External Table
Create an external table that points to your desired backup storage, then set up continuous data export for each table you want to back up. This allows data to be periodically exported to the external table, ensuring your backup is always up to date. then use tools like LightIngest to ingest the exported data back into Azure Data Explorer if needed.
Scripted Export of All Tables
Write a script that iterates through all your tables, runs KQL queries to export each table’s data, and saves the results to your local hard drive or cloud storage. While you mention having 60+ tables, scripting this process is feasible and can be scheduled or run on-demand.
Client-Side Export via Web UI or Kusto Client Libraries
You can run queries and export results to CSV or other formats. However, this is manual and not practical for a large number of tables
Please don't forget to close up the thread here by upvoting and accept it as an answer if it is helpful