Skip to content

Instantly share code, notes, and snippets.

@rahilwazir
rahilwazir / vmdk_vhdx.md
Last active September 4, 2024 14:05
Convert VMWare to Hyper-V (vmdk to vhdx)
@ixti
ixti / show-indexes.js
Last active October 10, 2024 04:03
Small script that extracts all non-default indexes from MongoDB
rs.slaveOk();
db.getCollectionNames().forEach(function(coll) {
db[coll].getIndexes().forEach(function(index) {
if ("_id_" !== index.name) {
print("db." + coll + ".ensureIndex(" + tojson(index.key) + ")");
}
});
});