- Reference >
- Database Commands >
- Administration Commands >
- renameCollection
renameCollection¶
On this page
Definition¶
-
renameCollection¶ Changes the name of an existing collection. Specify collection names to
renameCollectionin the form of a complete namespace (<database>.<collection>).Issue the
renameCollectioncommand against the admin database.The command takes the following form:
The command contains the following fields:
Field Type Description renameCollectionstring The namespace of the collection to rename. The namespace is a combination of the database name and the name of the collection. tostring The new namespace of the collection. If the new namespace specifies a different database, the renameCollectioncommand copies the collection to the new database and drops the source collection. See Naming Restrictions.dropTargetboolean Optional. If true,mongodwill drop thetargetofrenameCollectionprior to renaming the collection. The default value isfalse.
Behavior¶
renameCollection is suitable for production
environments; however:
renameCollectionblocks all database activity for the duration of the operation.renameCollectionis not compatible with sharded collections.renameCollectionfails iftargetis the name of an existing collection and you do not specifydropTarget: true.- You cannot rename a collection from a replicated database to the
localdatabase, which is not replicated. - You cannot rename a collection from the
localdatabase, which is not replicated, to a replicated database.
Warning
If the renameCollection operation does not complete,
the target collection and indexes will not be usable and
will require manual intervention to clean up.
Example¶
The following example renames a collection named orders in the
test database to orders2014 in the test database.
Warning
This command obtains a global write lock and will block other operations until it has completed.
The mongo shell provides the
db.collection.renameCollection() helper for the command to
rename collections within the same database. The following is
equivalent to the previous example:
Exceptions¶
| exception 10026: | |
|---|---|
Raised if the source namespace does not exist. |
|
| exception 10027: | |
Raised if the target namespace exists and dropTarget is
either false or unspecified. |
|
| exception 15967: | |
Raised if the target namespace is an invalid collection
name. |
|