@David Kendall Thank you for reaching out and for using Azure services.Which tool are you using to copy database?
What is the exact error?
What is the actual use case so we can recommend any better ways to achieve it.
For copying a database, you can follow the below methods:
- Use Point-in-Time Restore (PiTR) to create a copy of the database server instance. Note that this will create a new server with copy of all databases from the original server. For detailed instructions, you can refer to the official documentation on Point-in-time restore in Azure Database for MySQL - Flexible Server
- You can create a new vanilla MySQL - Flexible server as suggested above by @Mahesh Kurva and use DMS to copy a specific database to new server. Native MySQL OSS tools can be used to dump and restore specific database as well.
Regards,
Oury