zoukankan      html  css  js  c++  java
  • 用sql统计数据库表的大小

    查看mysql数据库大小的四种办法,分别有以下四种:
    第一种:进去指定schema 数据库(存放了其他的数据库的信息)
    use information_schema
    第二种:查询所有数据的大小
    select concat(round(sum(DATA_LENGTH/1024/1024),2),'MB') as data from TABLES(http://www.6ddd.com)
    第三种:查看指定数据库的大小,比如说:数据库apoyl
    select concat(round(sum(DATA_LENGTH/1024/1024),2),'MB') as data from TABLES where table_schema='apoyl';
    第四种:查看指定数据库的表的大小,比如说:数据库apoyl 中apoyl_test表
    select concat(round(sum(DATA_LENGTH/1024/1024),2),'MB') as data from TABLES where table_schema='apoyl' and table_name='apoyl_test';

    oracle 计算表大小:
    select bytes B, bytes/1024 KB, bytes/1024/1024 MB from user_segments s where s.segment_name='T0809';
    
    mysql 计算表大小:
    select concat(round(sum(DATA_LENGTH)/1024/1024,2),'M') from tables where table_schema='zudb' AND table_name='Adata01_table'; 
  • 相关阅读:
    MQ
    redis
    MongoDB
    进程相关命令
    catalina.sh
    tomcat-jvm
    中间件简介
    websphere
    mysql
    shell变量与字符串操作
  • 原文地址:https://www.cnblogs.com/zixia/p/9437327.html
Copyright © 2011-2022 走看看