I've been trying to set up and Azure Data Factory (unsuccessfully to date). I have 2 Azure SQL databases which are both on the same server (in the same subscription)
In both databases I have a table with the following schema
CREATE TABLE [dbo].[Country_Boundaries]
(
[Id] [nvarchar](255) NOT NULL,
[Boundary] [geography] NULL,
[Name] [nvarchar](255) NULL,
[Centroid] [geography] NULL
)
I would like to use a data factory to transfer the data from one database table to the same structured table in the second DB.
Do data factories support the Geography/Geometry data type?
I have also looked at using Azure data sync to do this - unfortunately each row in the table is too big for a single data sync transaction (the table contains complex country boundaries using the Geography data type).
Example
No of Bytes
Scotland - 55,340,796
NorthernI - 2,149,616
England - 2,126,804
Wales - 705,266
The other way I have looked at doing this is using referenced tables but unfortunately referenced tables don't support the Geography/Geometry data type, either.