oracle10g数据库中如何统计表的数据量
比如说数据库中每天建12张表,每两个小时建一张表,表名为haha_00,haha_01...一直到haha_12,我统计表中的数据时,用了命令selectcount(*)...
比如说数据库中每天建12张表,每两个小时建一张表,表名为haha_00,haha_01...一直到haha_12,我统计表中的数据时,用了命令
select count(*) from haha_00;这样的话只能统计出一张表的数据量,有没有一次性把这12张表的数据量全部给统计出来的命令呢,麻烦各位大侠帮帮忙。 展开
select count(*) from haha_00;这样的话只能统计出一张表的数据量,有没有一次性把这12张表的数据量全部给统计出来的命令呢,麻烦各位大侠帮帮忙。 展开
4个回答
展开全部
在oracle10g中统计所有表的数据量可以使用如下语句:
select sum(NUM_ROWS) from dba_tables where owner like 'SCHEMA';
说明一下,以上语句必须用dba账户登录才可以使用,其中的SCHEMA参数就是当前用户名。
chema为数据库对象的集合,为了区分各个集合,我们需要给这个集合起个名字,这些名字就是我们在企业管理器的方案下看到的许多类似用户名的节点,这些类似用户名的节点其实就是一个schema,schema里面包含了各种对象如tables, views, sequences, stored procedures, synonyms, indexes, clusters, and database links。
一个用户一般对应一个schema,该用户的schema名等于用户名,并作为该用户缺省schema。这也就是我们在企业管理器的方案下看到schema名都为数据库用户名的原因。
最简单的理解:以你计算机的用户为例,如果你的计算机有3个用户,那么每个用户登录系统看到的(使用的)功能是可以不相同的!
select sum(NUM_ROWS) from dba_tables where owner like 'SCHEMA';
说明一下,以上语句必须用dba账户登录才可以使用,其中的SCHEMA参数就是当前用户名。
chema为数据库对象的集合,为了区分各个集合,我们需要给这个集合起个名字,这些名字就是我们在企业管理器的方案下看到的许多类似用户名的节点,这些类似用户名的节点其实就是一个schema,schema里面包含了各种对象如tables, views, sequences, stored procedures, synonyms, indexes, clusters, and database links。
一个用户一般对应一个schema,该用户的schema名等于用户名,并作为该用户缺省schema。这也就是我们在企业管理器的方案下看到schema名都为数据库用户名的原因。
最简单的理解:以你计算机的用户为例,如果你的计算机有3个用户,那么每个用户登录系统看到的(使用的)功能是可以不相同的!
光点科技
2023-08-15 广告
2023-08-15 广告
通常情况下,我们会按照结构模型把系统产生的数据分为三种类型:结构化数据、半结构化数据和非结构化数据。结构化数据,即行数据,是存储在数据库里,可以用二维表结构来逻辑表达实现的数据。最常见的就是数字数据和文本数据,它们可以某种标准格式存在于文件...
点击进入详情页
本回答由光点科技提供
展开全部
select tablespace_name,sum(bytes)/1024/1024 from dba_data_files 2 group by tablespace_name
使用表空间的SQL语句,你可以去网上仔细看一下。
使用表空间的SQL语句,你可以去网上仔细看一下。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select sum(NUM_ROWS)
from user_all_tables
where table_name like 'haha%';
前提要分析下所有haha开头的表
from user_all_tables
where table_name like 'haha%';
前提要分析下所有haha开头的表
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select sum(a.num) from
(select count(*) num from haha_00 union all
select count(*) num from haha_01 union all
select count(*) num from haha_02 union all
select count(*) num from haha_03 union all
select count(*) num from haha_04 union all
select count(*) num from haha_05 union all
select count(*) num from haha_06 union all
select count(*) num from haha_07 union all
select count(*) num from haha_08 union all
select count(*) num from haha_09 union all
select count(*) num from haha_10 union all
select count(*) num from haha_11 ) a
(select count(*) num from haha_00 union all
select count(*) num from haha_01 union all
select count(*) num from haha_02 union all
select count(*) num from haha_03 union all
select count(*) num from haha_04 union all
select count(*) num from haha_05 union all
select count(*) num from haha_06 union all
select count(*) num from haha_07 union all
select count(*) num from haha_08 union all
select count(*) num from haha_09 union all
select count(*) num from haha_10 union all
select count(*) num from haha_11 ) a
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询