What is bson and how can restore this file in mongodb?
Answer Posted / Rajeev Kumar Singh
BSON (Binary JSON) is a binary-encoded serialization of JSON documents, used by MongoDB. To restore a BSON file, use the command: `mongoimport --db <database_name> --collection <collection_name> --file <filename>.bson`.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers