Skip to content

Instantly share code, notes, and snippets.

@denzhel
Created March 24, 2022 19:57
Show Gist options
  • Select an option

  • Save denzhel/890dcf93019d4b7130b894f3ec64abcf to your computer and use it in GitHub Desktop.

Select an option

Save denzhel/890dcf93019d4b7130b894f3ec64abcf to your computer and use it in GitHub Desktop.
mongo move collections between databases

To move a collection between databases, run the following from mongo shell:

use admin;
db.runCommand({renameCollection:"hours.night",to:"days.night"});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment