aiming to move my dataset between the us and the EU and getting the following error message:
-- Create the primary replica in the US multi-region.
-- CREATE SCHEMA covid_938 OPTIONS(location='us');
-- Create a replica in the secondary region.
-- ALTER SCHEMA covid_938
-- ADD REPLICA `eu`
-- OPTIONS(location='eu');
ALTER SCHEMA covid_938 SET OPTIONS(primary_replica = 'eu');
ALTER SCHEMA covid_938
DROP REPLICA IF EXISTS `us`;
Invalid value: The primary replica can only be assigned from the replica region: EU.



Can you try the steps found in this article ?
Following steps mentioned: