I put 250_000 records to mongodb with java driving force, however forgot to set encoding explicitly, so after linux on my windows gadget system encoding modified to cp1251 and i’ve many records with values like Внедорожник 5 РґРІ
i’ve a solution - just to go throw all gadgets, find and modify all string fields:
… mc2.findOneAndUpdate( new Document(“canonical”, canonical), new Document(“$set”, new Document(“regionName”, new String(doc.getString(“regionName”).getBytes(“cp1251”), “UTF-8”)))); … Is there a way to do that without external program? (with some mongo js functions, utilities etc.)
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Hi @soujanyanaguri23 I would give you the same answer as someone gave you here: https://stackoverflow.com/questions/44277981/convert-mongo-values-from-one-encoding-to-another No, it might be possible, but javascript doesn’t really understand codepages like most other advanced languages, so you’ll need a lot of frameworks for that to work - and you’ll have to use the eval function to run it directly in Mongo, which I wouldn’t recommend.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.