Oracle统计某用户下所有的表的记录数

来源:互联网 发布:靠谱的mac淘宝代购 编辑:程序博客网 时间:2024/06/05 09:39

建立一个计算函数
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
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;


然后通过计算函数进行统计
select table_name, count_rows(table_name) nrows from user_tables


获取要统计的值

原创粉丝点击