Porting data from MongoDB to the MySQL Document Store is very
easy. The example I will use is an example data set from
the good folks at Mongo named zips.json that contains
a list of US Postal Codes and can be found at http://media.mongodb.org/zips.json for
your downloading pleasure.
I copied the file into the Downloads directory on my Unbuntu
laptop and then fired up the new MySQL Shell. After login,
I created a new schema creatively named zips with
session.createSchema('zips'). When then set the
db object to this new schema with the command \use
zips.
… |