I have let's say two pc's.PC-a and PC-b which both have the same application installed with java db support.I want from time to time to copy the data from the database on PC-a to database to PC-b and vice-versa so the two PC's to have the same data all the time. Is there an already implemented API in the database layer for this(i.e 1.export-backup database from PC-a 2.import-merge databases to PC-b) or i have to do this in the sql layer(manually)?
|
|
In short: You can't do this without some work on your side. SalesLogix fixed this problem by giving everything a site code, so here's how your table looked:
So now you would take your databases, and match up each record by primary key. Where there are conflicts you would have to provide a report to the end-user, on what data was different. Say machine1:
and on machine2:
When performing a resolution:
There is NO way to do this automatically without error or data corruption or referential integrity issues. |
||
|
|
|
|
As you mention in the comments that you want to "merge" the databases, this sounds like you need to write custom code to do this, as presumably there could be conficts - the same key in both, but with different details against it, for example. |
||
|
|
|
|
Hi, I guess you are using Java DB (aka Derby) - in which case, assuming you just can't use a single instance, you can do a backup/restore. |
||
|
|
|
Why dont you have the database on one pc. and have all other pc's request data from the host pc |
||
|
