oracle2postgres
oracle2postgres copied to clipboard
Migrate data from an Oracle database to a Postgres database
Results
3
oracle2postgres issues
Sort by
recently updated
recently updated
newest added
It would be good to add some integrity checks that can be run at the end of the migration, to check that data has copied across correctly.
Add testing framework. Run on Travis or Shippable.
The current approach (`_copy_data`) for loading data from the source database relies on limit + offset, which is slow. Replace it with a faster approach, perhaps using yield_per or a...