javydreamercsw
javydreamercsw

Reputation: 5089

Copying a database JPA

I have a working code that basically copies records from one database to another one using JPA. It works fine but it takes a while, so I wonder if there's any faster way to do this.

I thought Threads, but I get into race conditions and synchronizing those pieces of the code end up being as long as the one by one process.

Any ideas?

Update

Here's the scenario:

Upvotes: 0

Views: 57

Answers (1)

Kevin Hooke
Kevin Hooke

Reputation: 2621

Most databases provide native tools to support this. Unless you need to write additional custom logic to transform the data in some way, I would recommend looking at the export/import tools provided by your database vendor.

Upvotes: 1

Related Questions