There's a service A that works with DB1, there's service B that works with DB1 and DB2. Service A has read-write access to DB1 and doesn't work with DB2 at all. Service 2 has read-write access to DB2 and read-only access to DB1.
The idea is, I'm developing service 2 and concerned about the inconsistency. Service 2 is like a "plugin" to service 1, so DB2 may be thought of as "some more data related with DB1 entities". There's no way I can explicitly synchronize with Service 1 and it's DB, there's no way I can receive any notifications when entities are removed, changed or new entities appear.
The question is, what's the right approach for service 2 to make all this stuff consistent?
I'm thinking about scheduling copying of entities from DB1 to DB2, so the only thing that really works with DB1 is that "copier". Then, Service 2 will only work with DB2 and there should be no problems. This seems to be quite trivial, so I really like this approach.
Any other ideas?
Some more details: DB1 is like 2 tables with summary of 1M rows. Both DBs are on the same server. The server is MS SQL 2005/2008. Service 2 is in .NET.