概述
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 | select 'select * from (' select_sql, '' table_name |
4、直接第三步的脚本,等待结果
补充说明:
1 | oracle数据库还有一个系统级的查询方式: |
二、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 | SELECT 'select * from (' select_sql, table_schema |
4、直接第三步的脚本,等待结果
补充说明:
1 | mysql数据库还有一个系统级的查询方式: |
三、SQLserver数据库的四步骤
1、定位表信息
1 | select * from sysobjects where xtype = 'U' ; |
2、创建查询脚本
1 | SELECT TOP 1 'select * from (' select_sql, name as table_schema |
3、直接第三步的脚本,等待结果
补充说明:
1 | SQLserver数据库还有一个系统级的查询方式: |