Hi @Antonio A ,
So it is data replication from SQL server to SQL server. If so please do not use Heterogeneous Database Replication that I mentioned above. Using transaction replication.
> Will we have any kind of restriction in ddl replication or changes in sql server in source to sql server in destination?
Quote from MS document Considerations for Schema Changes;
• ALTER TRIGGER can be used only for data manipulation language [DML] triggers because data definition language [DDL] triggers cannot be replicated.
• Schema changes are subject to any restrictions imposed by Transact-SQL. For example, ALTER TABLE does not allow you to ALTER primary key columns.
• Schema changes are propagated to Subscribers running previous versions of SQL Server, but the DDL statement should only include syntax supported by the version at the Subscriber.
Please read the MS document to get more about this.
For Oracle GoldenGate, please refer to the blog Limitations of Oracle GoldenGate DDL Support .
If the response is helpful, please click "Accept Answer" and upvote it, as this could help other community members looking