Advertisement
Javi

Mongodb: enron transformation

Oct 9th, 2015
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. db.messages.find().snapshot().forEach( function (mail) {
  2. if (mail.headers.To && mail.headers.To.split) {
  3. mail.headers.To = mail.headers.To.split(/[ ,]+/);
  4. db.messages.save(mail);
  5. }
  6. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement