You might be better off using Azure Data Factory to move data between two Azure SQL Data Warehouses. This would make it easy to move data, but beware of any cost of moving data, especially when moving around a region. Start here . Check the "Use base" box.
If you just want to use Polybase and Blob Storage, you will have to:
- first export the data from the internal tables of the source system to the blob using CETAS .
- create external tables on files in the blob repository on the target system
- n The target system imports data from external tables into the database using CTAS . li>