I have requirement with below for SQL database replication.
- I have two separate SQL database servers on same network, one will be used as primary and another one as secondary.
- Primary is a central source of data, and I have ETL which load data from source systems to central database on daily basis (once in a day). This daily data will need to be replicated over to secondary server and application will be connected to secondary server to use for some analysis purpose. Additional processing and reporting logic will be done at secondary server. This DB on secondary server need to be in read/write mode, however this updates does not need to replicated back to primary as it will be additional new table data.
- Different security settings need to apply to both servers.
What type of database replication is best suited for such scenario? Database size can be from a few GBs up to 1TB.
Thanks.