use product-test;

var cursor = db.user.find();

use product;

while(cursor.hasNext()){
db.user.insert(cursor.next());
}

05-16 10:27