On this page
dropAllRolesFromDatabase
On this page
Definition
dropAllRolesFromDatabase-
Deletes all user-defined roles on the database where you run the command.
Warning
The
dropAllRolesFromDatabaseremoves all user-defined roles from the database.The
dropAllRolesFromDatabasecommand takes the following form:{ dropAllRolesFromDatabase: 1, writeConcern: { <write concern> } }The command has the following fields:
Field Type Description dropAllRolesFromDatabaseinteger Specify 1to drop all user-defined roles from the database where the command is run.writeConcerndocument Optional. The level of write concern for the removal operation. The writeConcerndocument takes the same fields as thegetLastErrorcommand.
Example
The following operations drop all user-defined roles from the products database:
use products
db.runCommand(
{
dropAllRolesFromDatabase: 1,
writeConcern: { w: "majority" }
}
)
The n field in the results document reports the number of roles dropped:
{ "n" : 4, "ok" : 1 }