Undo convertToCapped to a collection

后端 未结 3 1727
暖寄归人
暖寄归人 2021-01-12 21:18

In MongoDB you can convert a collection into a capped collection with the command convertToCapped, but is there a way to revert this change so a capped collecti

3条回答
  •  悲&欢浪女
    2021-01-12 21:52

    same as above without using script.

        db.collection.copyTo("collection_temp")
        db.collection.drop()
        db.collection_temp.renameCollection("collection")
    

提交回复
热议问题