Ejemplo 1: eliminar la base de datos mongo
// First show what databases have you gotten
show dbs
// then, use the database name that you want to drop
use YOUR_DATABASE_NAME
// now you can drop it
db.dropDatabase()
// show collections should be empty now
show collections
Ejemplo 2: eliminar la línea de comandos de la base de datos mongodb
mongo <dbname> --eval "db.dropDatabase()"
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)