I am setting up a simple data sync, only updated at the Hub database and I want to specify he destination owner for the tables included in this sync group.
Ex: The table dbo.TableName at the Hub database should be notdbo.TableName at the other databases in the sync group
I have not been able to find if this is possible, anyone who knows better than me?
Thanks!
Yes, it's possible. The source table and destination table can be different database schema. And the tables schema should better be same.
We can sync the table from
dbo.table1
tonodbo.table1
. The limit is:For more details, you can ref here: Requirements and limitations
HTH.