sql server - Can I replicate from Postgres to MS SQL? -
i have postgres database in production want use ms sql (whatever edition) reporting. so, have replication set ms sql subscribes postgres. possible?
all heterogeneous replication scenarios deprecated microsoft, , recommend building solutions using ssis , cdc instead.
we load data postgresql our sql server reporting database using ssis , works well, although had use commercial ole db provider because of limitations (at time) in open-source one.
actually copying data easy part; of work comes in gathering requirements, understanding data, transforming it, implementing logging , error handling etc. ssis can things right away (e.g. logging) general advice use workflow tool , simple data copying minimal transformation logic (e.g. data type conversion). if seems seems difficult or clumsy in ssis can put stored procedure or script , call ssis instead.
Comments
Post a Comment