1.进入到MongoDB的安装目录的bin目录中...
2. mongoexport -h dbhost -d dbname -c collectionName -o output
参数说明:
-h 数据库地址
-d 指明使用的库
-c 指明要导出的集合
-o 指明要导出的文件名(文件支持多种格式,如txt,wps,xls等)
3.mongoimport -h dbhost -d dbname -c collectionname input
参数说明:
-h 数据库地址
-d 指明使用的库
-c 指明要导入的集合(mongodb本身支持隐式创建,故事先无需创建集合)
input 文件的地址
4.完成