What is the best way to move a large dataset from one django database to another?
I would like to do this at a high level (in django), not at the database level. All existing tools that I know (dumpdata / loaddata, classizer, django-extensions) are stored in memory, so it does not process large data sets.
source
share