Nella shell Mongo, questo può essere fatto usando db.getSiblingDB()
metodo per passare al database admin e ottenere un elenco dei 200 database eseguendo il comando admin db.runCommand({ "listDatabases": 1 })
. Scorrere l'elenco dei database e utilizzare db.getSiblingDB()
di nuovo per passare da un database all'altro, interroga il Group
raccolta per meldingId
i valori. Qualcosa del genere:
// Switch to admin database and get list of databases.
db = db.getSiblingDB("admin");
dbs = db.runCommand({ "listDatabases": 1 }).databases;
// Iterate through each database.
dbs.forEach(function(database) {
db = db.getSiblingDB(database.name);
// Get the Group collection
collection = db.getCollection("Group");
// Iterate through all documents in collection.
/*
collection.find().forEach(function(doc) {
// Print the meldingId field.
print(doc.meldingId);
});
*/
var meldingIds = collection.distinct('meldingId');
print(meldingIds);
});