`
53873039oycg
  • 浏览: 843916 次
  • 性别: Icon_minigender_1
社区版块
存档分类
最新评论

Mysql,Oracle得到表的总行数及大小

 
阅读更多

    今天看了一哥们的博文,http://openlok.iteye.com/blog/2021580,突然想到以前每次测试的时候总是想知道那些表数据最多,今天从网上收集了下怎么得到表的行数及大小,本文SQL从网上收集的,本人测试通过。

    首先是Mysql得到表行数,参考了链接:

    http://stackoverflow.com/questions/433903/how-many-rows-in-mysql-database-table

   

SELECT table_schema, table_name, table_rows
FROM information_schema.tables
ORDER BY table_rows DESC

   或者这样

  

SELECT table_schema, table_name, table_rows
FROM information_schema.tables
where table_schema='test'
ORDER BY table_rows DESC

   Mysql得到表大小,参考了链接:

    http://stackoverflow.com/questions/9620198/how-to-get-the-sizes-of-the-tables-of-a-mysql-database

   可以这样:

  

SELECT table_name AS "Tables", 
round(((data_length + index_length) / 1024 / 1024), 3) "MB" 
FROM information_schema.TABLES 
WHERE table_schema = "test"
ORDER BY (data_length + index_length) DESC;

   Mysql得到库的大小:

   

SELECT table_schema "DB Name", 
Round(Sum(data_length + index_length) / 1024 / 1024, 1) "DB Size in MB" 
FROM   information_schema.tables 
GROUP  BY table_schema
order by sum(data_length + index_length) DESC;

    上面的SQL在Mysql 5.6.14上面测试通过。

 

    下面看Oracle怎么得到表的总行数及大小.

     Oracle得到表的总行数,参考了链接:

     http://www.dba-oracle.com/t_count_rows_all_tables_in_schema.htm

     Sys用户可以这样:

    

select table_name, num_rows counter
  from dba_tables
 where owner = 'TMD'
 order by num_rows desc
 nulls last;

    普通用户:

   

select table_name, num_rows  counter
  from all_tables 
 where owner = 'TMD'
 order by num_rows desc
 nulls last;

    或者:

   

 select table_name, num_rows  counter
  from user_tables 
 order by num_rows desc
 nulls last;

    如果想得到一个文本汇总文件,可以写脚本,参考了链接:

     http://www.dba-oracle.com/t_count_rows_all_tables_in_schema.htm

    

set pages 999;
col count format 999,999,999;
spool f:/saveFile/tmp/countlist.txt
select
   table_name,
   to_number(
   extractvalue(
      xmltype(
         dbms_xmlgen.getxml('select count(*) c from '||table_name))
    ,'/ROWSET/ROW/C')) count
from 
   user_tables
order by 
   table_name;
spool off;

    怎么得到表的大小呢?参考了链接:

    https://community.oracle.com/thread/1113909

     sys用户:

     

 select segment_name,segment_type,bytes/1024/1024 MB
 from dba_segments
 where segment_type='TABLE' and OWNER = 'TMD'
 order by bytes desc;

   普通用户,参考了链接

    http://www.dba-oracle.com/t_script_oracle_table_size.htm

   

 select segment_name table_name, sum(bytes) / (1024 * 1024) table_size_meg
  from user_extents
 where segment_type = 'TABLE'
 group by segment_name;

   上面的代码在oracle 10g测试通过。

  

    本文中的SQL全部从网上收集,如有错误,欢迎指出,谢谢。

    本文完。

     

    

 

 

0
0
分享到:
评论

相关推荐

    db.rar_12_864_231

    例如,“12”可能是数据库包含的表格数量,“864”可能是数据库的总行数,“231”可能是某个字段的值或特定查询的结果数。 【压缩包子文件的文件名称列表】只有一个条目:"db",这表明压缩包内可能只有一个主文件或...

    SQL分页读取海量数据存储过程

    3. 使用子查询或临时表:在某些数据库系统中,可以先计算出总行数,再进行分页查询,以减少`OFFSET`的影响。 五、其他分页技巧 1. ROW_NUMBER()函数:SQL Server和Oracle支持ROW_NUMBER()函数,可以为每一行生成一...

    储存过程分页

    2. 分页计算总数:如果需要显示总页数,可以在存储过程中额外计算总行数,然后根据`@PageSize`计算总页数。 3. 锁定行:在并发环境下,为了防止脏读或幻读,可能需要在存储过程中添加适当的事务和锁定机制。 五、...

    微软DbHelper

    如`ExecuteNonQuery()`用于执行非查询操作(如INSERT、UPDATE、DELETE),`ExecuteReader()`用于获取数据读取器以遍历查询结果,以及`ExecuteScalar()`用于获取单个值(如查询表的总行数)。 3. **参数化查询**:...

    C#中常用的分页存储过程 源代码

    这可以通过查询表的总行数并除以每页的行数得到。如果不能整除,总页数应向上取整。 ```csharp int totalCount = ExecuteScalar("SELECT COUNT(*) FROM YourTable"); int totalPages = (int)Math.Ceiling(...

    C#原生报表操作--设置每页打印30行实例源码(值得下载)

    在设置每页打印30行时,我们需要计算报表的总行数,并根据打印机的纸张大小、行高来确定分页。如果一行数据跨越了页面边界,可能需要实现跨页数据的处理。 具体到这个实例源码,我们可以期待以下关键点: 1. 数据...

    OTL 编程指南

    - **get_row_count**:获取总行数。 - **flush**:将缓冲区的数据写入数据库。 - **commit_row/rollback_row**:对于分批提交,分别用于提交或回滚当前行。 OTL的这些特性使其成为C++数据库开发者的理想选择,尤其...

Global site tag (gtag.js) - Google Analytics