How can I copy a database to another in Mongoose? something like this command line:
db.copyDatabase('sourceDb','destinationDb')
?
Thanks..
How can I copy a database to another in Mongoose? something like this command line:
db.copyDatabase('sourceDb','destinationDb')
?
Thanks..
There is no direct possibility in mongoose. The easiest way seems to be using the mongodb native client in parallel. Look here.