2019年9月2日
摘要: mvn install:install-file -DgroupId=com.xinyartech -DartifactId=easyexcel -Dversion=1.1.1 -Dpackaging=jar -Dfile=/root/shell/easyexcel-1.1.1.jar -Dfile:要注册的jar,绝对路径 阅读全文
posted @ 2019-09-02 17:58 Ruthless 阅读(44846) 评论(1) 推荐(0) 编辑
摘要: 1、查询所有数据库占用磁盘空间大小 select TABLE_SCHEMA, concat(truncate(sum(data_length)/1024/1024,2),' MB') as data_size, concat(truncate(sum(index_length)/1024/1024,2),'MB') as index_size from information_schema.tab 阅读全文
posted @ 2019-09-02 15:26 Ruthless 阅读(10062) 评论(0) 推荐(0) 编辑