MongoDB 컬렉션 삭제가 되지 않을때
리눅스/MongoDB2020. 10. 13. 14:37
반응형
> db.202009.drop()
uncaught exception: SyntaxError: unexpected token: numeric literal :
@(shell):1:2
이와 같이 어떤 사유에서 특정 컬렉션이 삭제되지 않는 경우가 있습니다.
이경우 getCollection 을 이용하여 삭제하면 됩니다.
> db.getCollection("202009").drop()
true
>
반응형
'리눅스 > MongoDB' 카테고리의 다른 글
MongoDB 데이터 업데이트 하기 (upsert : 없으면 insert, 있으면 update), $inc 를 이용한 덧셈 (0) | 2020.10.20 |
---|---|
MongoDB 도큐멘트를 AND 또는 OR 조건으로 가져오기 (0) | 2020.10.16 |
MongoDB 쿼리 - 페이지 출력을 위한 skip, limit 사용하기 (0) | 2020.10.06 |
MongoDB 명령어를 이용한 bson -> json 변환 (0) | 2020.09.24 |
[MongoDB에러] server returned error on sasl authentication step: authentication failed. (0) | 2019.08.30 |
댓글()