Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi,
I have a backup file dump MYSQL Administrator dump 1.4 so in which db can I restore this dump.
I cannot do in mysql workbench and not either in SSMS also so lease suggest me some other DB to restore this data dump.
Hey, LB-Tech, would you like to restore MySQL dump into Microsoft Fabric or you had something else on your mind here?
Any other way without using azure databases for mysql?
Hi @LB-Tech ,
Azure Database for MySQL is a managed database service that supports MySQL databases. You may try as follows to restore your dump file:
Create an Azure Database for MySQL instance:
Upload your dump file:
Restore the dump file:
mysql -h <your-server-name>.mysql.database.azure.com -u <your-username>@<your-server-name> -p <your-database-name> < <path-to-dump-file>
Best regards.
Community Support Team_Caitlyn