Hi all,
We have a CRM software that uses an SQL db to store data (currently SQL Express 2019).
This db, let's call it db A stores customers, calls, tickets, etc.
We also have another pc with an empty db, let's call it db B (also SQL Express 2019) .
Our goal is to capture specific queries that get sent to db A, like inserting new customers or tickets marked as urgent and send them to db B as well (doing it in realtime is not a requirement).
This way, whenever a new client is added both dbs will get it but whenever a ticket gets created the second db will get it only if field x has value y.
Is something like that possible? Can it work reliably?
Thanks for the help!