Thursday, May 17, 2018

copy mongo collection to another db

db.advertisement1.find().forEach(function(d){ db.getSiblingDB('byrouter_ad_content')['advertisement1'].insert(d); });

No comments:

How to solve mysql ERROR 1118 (42000) Row size too large

  I had this issue with MYSQL 5.7 . The following worked althoug...