今天在用shell 执行简单的mongo命令:
use test;
db.sky.count()
使用一句shell命令:echo "use test;\n db.sky.count()" |mongo 127.0.0.1:27017
时报错:
Error: [test;
db.sky.xount()] is not a valid database name
没有正确执行。
使用echo -e 命令解决:
echo -e "use test;\n db.sky.count()" |mongo 127.0.0.1:27017
记录一下
打印所有表的记录数
db.getCollectionNames().forEach(function(collection){ print(collection +" "+ db[collection].count())})
打印每一库的总记录数:
db.adminCommand('listDatabases')['databases'].forEach(function(dbn){printjson(dbn['name']);var my=db.getSisterDB(dbn['name']);printjson(my.stats()['objects'])})
打印Mysql每个表记录数
USE information_schema;
SELECT table_name,table_rows FROM TABLES WHERE TABLE_SCHEMA = 'education' ORDER BY table_rows DESC;
阅读(1452) | 评论(0) | 转发(0) |