Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
3  
-1 for doing zero research - we call this laziness – esaelPsnoroMoN May 24 '12 at 5:36
Thanks. I will try to be harder on myself in the future. – xiaohan2012 May 24 '12 at 7:33
hmm... why the downvote? This is an awesome question. +1. Yea I can google and this should show up. – Jim Thio Sep 6 '12 at 4:05
1  
+1 for putting this question into google search – Jim Thio Sep 6 '12 at 4:06

2 Answers

up vote 8 down vote accepted
db.oldname.renameCollection("newname")
share|improve this answer

Really? No google search?
http://www.mongodb.org/display/DOCS/renameCollection+Command

> db.oldname.renameCollection("newname")
share|improve this answer
hehe, careless Google search. Thanks. – xiaohan2012 May 24 '12 at 5:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.