Rất tiếc, bây giờ không có cách nào để buộc các chuỗi giống số được hiểu là chuỗi:
https://jira.mongodb.org/browse/SERVER-3731
Bạn có thể viết một tập lệnh bằng Python hoặc một số ngôn ngữ khác mà bạn cảm thấy thoải mái, dọc theo các dòng:
import csv, pymongo
connection = pymongo.Connection()
collection = connection.mydatabase.mycollection
reader = csv.DictReader(open('myfile.csv'))
for line in reader:
print '_id', line['_id']
upsert_fields = {
'_id': line['_id'],
'my_other_upsert_field': line['my_other_upsert_field']}
collection.update(upsert_fields, line, upsert=True, safe=True)