Reputation: 10342
Changing the name of a collection in mongodb can be achieved by copy the documents in the collection to a new one and delete the original.
But is there a simpler way to change the name of a collection in mongodb?
Upvotes: 12
Views: 8448
Reputation: 18601
db.oldCollectionName.renameCollection("NewCollectionName")
Check Manual here.
Upvotes: 1
Reputation: 92657
Really? No google search?
http://www.mongodb.org/display/DOCS/renameCollection+Command
> db.oldname.renameCollection("newname")
Upvotes: 3