当前位置:   article > 正文

【Oracle实战经验三】:所有表记录和数据量查询_oracle统计数据量

oracle统计数据量

查询当前用户下的所有表

select t.table_name from user_tables t

在这里插入图片描述

查询用户下所有表和表中的数据条数

  1. 计算表的数据条数
    create or replace function count_rows(table_name in varchar2,
    owner in varchar2 default null)
    return number authid current_user IS
    num_rows number;
    stmt varchar2(2000);
    begin
    if owner is null then
    stmt := ‘select count() from “’ || table_name || '”’;
    else
    stmt := 'select count(
    ) from "’ || owner || ‘"."’ || table_name || ‘"’;
    end if;
    execute immediate stmt
    into num_rows;
    return num_rows;
    end;

  2. 查询表中的数据条数
    select table_name, count_rows(table_name) nrows from user_tables

在这里插入图片描述

查询用户下所有表数据条数的总和

select SUM(nrows) from
(
select table_name, count_rows(table_name) nrows from user_tables
)

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/代码探险家/article/detail/752499
推荐阅读
相关标签
  

闽ICP备14008679号