码迷,mamicode.com
首页 > 数据库 > 详细

oracle 统计指定条件下所有表的行数

时间:2015-08-17 23:52:46      阅读:493      评论:0      收藏:0      [点我收藏+]

标签:

今天 需要统计下指定用户下的所有表的行数,于是采用了oracle 内置视图:

select table_name,num_rows  from dba_tables where owner = ‘USERNAME‘;  或
select table_name,num_rows from user_all_tables ;

可是统计结果发现,有的表的统计数量和实际数量有差异,因此,直接自己写了个统计指定条件下表的记录的sql:

--创建一个表用于存储计算结果
create table t_temp(t_name varchar2(50),t_number number);
--计算所有表的行数,并保存
declare
table_numbers number;
i number;
table_name1 varchar2(50);
cursor cursor_value is select table_name from user_all_tables where instr(table_name,‘$‘,1)=0 and instr(table_name,‘SMID_‘,1)=0;
begin
   open cursor_value; 
      loop 
        fetch cursor_value into table_name1;  
           execute immediate ‘select count(*) from ‘||table_name1 into table_numbers;
           DBMS_OUTPUT.PUT_LINE(table_name1||‘     ‘||table_numbers); 
           insert into t_temp values(table_name1,table_numbers);
           commit;
           exit when cursor_value%notfound;     
      end loop;
    close cursor_value;
   end; 
   
--查询统计表,结果是理想的结果
select *from t_temp;


oracle 统计指定条件下所有表的行数

标签:

原文地址:http://my.oschina.net/zhxwang/blog/493694

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!