Guest User

Untitled

a guest
May 20th, 2018
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. # this will copy the collection 'my_original' to 'my_copy'
  2. db.my_original.aggregate([{$match: {}}, {$out: "my_copy"}])
  3.  
  4. # to move the collection to another db within the same Atlas mongodb cluster
  5. db.adminCommand({renameCollection: "my_db.my_copy", to: "other_db.other_name"})
Add Comment
Please, Sign In to add comment