db.getSiblingDB()
を使用できます データベースとdb.getCollectionNames()
を切り替える コレクション名を取得します。 admin
から最初のコマンドを実行する必要があることに注意してください データベースのリストを取得するためのデータベース。やりたいことを実現するためのシェルの短いスクリプトは、次のようになります。
// Switch to admin database and get list of databases.
db = db.getSiblingDB("admin");
dbs = db.runCommand({ "listDatabases": 1 }).databases;
// Iterate through each database and get its collections.
dbs.forEach(function(database) {
db = db.getSiblingDB(database.name);
cols = db.getCollectionNames();
// Iterate through each collection.
cols.forEach(function(col) {
// Do something with each collection.
print(col);
});
});