We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e57e30d + d5153b4 commit 24d57bfCopy full SHA for 24d57bf
1 file changed
data/mongodb.json
@@ -270,6 +270,23 @@
270
"code": "$last"
271
}
272
]
273
+ },{
274
+ "title": "মঙ্গডিবি ডাটা ইমপোর্ট এবং এক্সপোর্ট",
275
+ "items": [
276
+ {
277
+ "definition": "JSON ফরম্যাটে ডাটা ইমপোর্ট করতে",
278
+ "code": "mongoimport --uri '<Atlas Cluster URI>' --drop=<filename>.json"
279
+ }, {
280
+ "definition": "JSON ফরম্যাটে ডাটা এক্সপোর্ট করতে",
281
+ "code": "mongoexport --uri '<Atlas Cluster URI>' --collection=<collection_name> --out=<filename>.json"
282
283
+ "definition": "BSON ফরম্যাটে ডাটা ইমপোর্ট করতে",
284
+ "code": "mongorestore --uri '<Atlas Cluster URI>' --drop dump"
285
286
+ "definition": "BSON ফরম্যাটে ডাটা এক্সপোর্ট করতে",
287
+ "code": "mongodump --uri '<Atlas Cluster URI>'"
288
+ }
289
+ ]
290
291
292
0 commit comments