Skip to content

Instantly share code, notes, and snippets.

@coldclimate
Created July 24, 2012 12:18
Show Gist options
  • Save coldclimate/3169629 to your computer and use it in GitHub Desktop.
Save coldclimate/3169629 to your computer and use it in GitHub Desktop.
Copy objects from from Mongodb db.collection to another
Dirty and not safe but ok for ditry stuff.
db.CollectionOne.find().forEach(function(d){ db.getSiblingDB('ther-db').CollectionTwo.insert(d); });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment