Thursday, 04 June, 2026г.
russian english deutsch french spanish portuguese czech greek georgian chinese japanese korean indonesian turkish thai uzbek

пример: покупка автомобиля в Запорожье

 

Mongodb export

Mongodb exportУ вашего броузера проблема в совместимости с HTML5
MongoDb export mongoexport command is use for exporting data into json or csv format. 1.Start Mongo instance 2.Start cmd in administrator mode Export collection into json Only mongoexport command not work. For that you have to specify database name as well as collection name. You also need to specify output parameter. mongoexport --db StudentDb --collection stud --out stud.json Export collection into CSV For csv export , you need to specify the type. Most important is this csv required column name. Without column name it gives the error. mongoexport --db StudentDb --collection stud --type=csv --fields Name,Age --out stud.csv You can also give the file which contains the fields and then you can export into csv. Create fields.txt file and add whatever fields data you want. mongoexport --db StudentDb --collection stud --type=csv --fieldFile fields.txt --out stud.csv Thanks for watching.!
Мой аккаунт