Tôi sẽ sử dụng forEach và $ addToSet , để tập lệnh có thể được thực thi lại.
db.collectionname.find().forEach(function(results)
{
print( "Id: " + results._id );
db.collectionname.update( {_id : results._id},
{$addToSet : {myArray : results._id}})
});