表数据量查询

概述

1
工作中常常涉及到对数据库中表的数据量进行统计,在获取的信息有限的情况下,如何简单、快速操作获取信息。

一、oralce数据库的四步骤

1、定位表的所有者
1
select owner , count( 1) from all_all_tables group by owner ;
2、定位所有者名下的表
1
select * from all_all_tables where owner = 'owner' ; -- owner 第一步定位出来的所有者
3、创建查询脚本
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
select 'select * from (' select_sql, '' table_name
from dual
union all
select select_sql, table_name
from (select 'select ''' || table_name ||
''' as table_na , count(1) ds_count from ' || table_name ||
' union all' select_sql,
table_name
from all_all_tables
where owner = 'JHPT_ZX_QYYL'
order by table_name asc)
union all
select 'select ''table_count'' as table_na , count(1) ds_count from all_all_tables where owner = ''JHPT_ZX_QYYL'' ) ' select_sql,
'' table_name
from dual;
-- owner 第一步定位出来的所有者(2处批量替换)
-- 执行语句,全量copy第一列‘select_sql’信息
4、直接第三步的脚本,等待结果

补充说明:

1
2
3
oracle数据库还有一个系统级的查询方式:
select u.table_name, u.num_rows from user_tables u order by u.num_rows desc;
这个查询的结果是非实时的表数据量,与实际的数据量存在一定差异,精度要求不高的情况下,可以参考使用。

二、mysql数据库的四步骤

1、定位表的所有者
1
select table_schema , count(1) from information_schema.tables group by table_schema ;
2、定位所有者名下的表
1
select * from information_schema.tables where table_schema = 'owner' ; -- owner 第一步定位出来的所有者
3、创建查询脚本
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
SELECT 'select * from (' select_sql, table_schema
FROM information_schema.TABLES LIMIT 1
UNION ALL
select select_sql, table_schema
from (SELECT concat('select ''',
table_name,
''' as table_na , count(1) ds_count from ',
table_name,
' union all') select_sql,
table_schema
FROM information_schema.TABLES
WHERE table_schema = 'owner'
order by table_name asc) a
UNION ALL
SELECT select_sql, table_schema
FROM (SELECT 'select ''table_count'' table_na , count(1) ds_count from information_schema.tables where table_schema = ''owner'' ) a ; ' select_sql,
table_schema
FROM information_schema.TABLES LIMIT 1) a ;
-- owner 第一步定位出来的所有者(2处批量替换)
-- 执行语句,全量copy第一列‘select_sql’信息
4、直接第三步的脚本,等待结果

补充说明:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mysql数据库还有一个系统级的查询方式:
SELECT
table_schema AS '数据库',
table_name AS '表名',
table_rows AS '记录数',
TRUNCATE ( data_length / 1024 / 1024, 2 ) AS '数据容量(MB)',
TRUNCATE ( index_length / 1024 / 1024, 2 ) AS '索引容量(MB)'
FROM
information_schema.TABLES
WHERE
table_schema = 'owner'
ORDER BY
table_name asc;
-- owner 第一步定位出来的所有者(2处批量替换)
这个查询的结果是非实时的表数据量,与实际的数据量存在一定差异,精度要求不高的情况下,可以参考使用。

三、SQLserver数据库的四步骤

1、定位表信息
1
select * from sysobjects where xtype = 'U' ;
2、创建查询脚本
1
2
3
4
5
6
7
8
9
10
11
12
13
SELECT TOP 1 'select * from (' select_sql, name as table_schema
FROM sysobjects
UNION ALL
SELECT 'select ''' + name + ''' as table_na , count(1) ds_count from ' + name +
' union all' as select_sql,
name as table_schema
FROM sysobjects
where xtype = 'U'
UNION ALL
SELECT select_sql, table_schema
FROM (SELECT TOP 1 'select ''table_count'' table_na , count(1) ds_count from sysobjects where xtype = ''U'' ) a ; ' as select_sql,
name as table_schema
FROM sysobjects) a;
3、直接第三步的脚本,等待结果

补充说明:

1
2
3
4
5
6
7
8
SQLserver数据库还有一个系统级的查询方式:
SELECT A.NAME, B.ROWS
FROM sysobjects A
JOIN sysindexes B ON A.id = B.id
WHERE A.xtype = 'U'
AND B.indid IN (0, 1)
ORDER BY A.NAME DESC
这个查询的结果是非实时的表数据量,与实际的数据量存在一定差异,精度要求不高的情况下,可以参考使用。