oracle統計表的所有行數(原創)

coolhe發表於2010-07-07

因為一直在做oracle 管理,對錶的行數有一定要掌握,先編寫了一個過程,進行統計使用者下的表的所有行數。現貼如下:|
---------------------------------------------------------------------
create or replace procedure sp_static_tab

  /**
   * 統計所有表的行數
   */
is
 vv_table_name varchar2(64); 
 vi_table_rows number;
 vv_sqlstr     varchar2(200);
 
 cursor r_cursor is
 select table_name from user_tables
  where substr(table_name,1,3)<>'BIN'; 
 
begin
 EXECUTE IMMEDIATE 'truncate table tb_static_tab';
   
  OPEN r_cursor;
 LOOP 
  FETCH r_cursor INTO vv_table_name;
  exit when r_cursor %notfound;
  vv_sqlstr:='select count(1) from '|| vv_table_name;
  
  begin     
   EXECUTE IMMEDIATE vv_sqlstr
      into vi_table_rows;
     
   insert into tb_static_tab
   (
    static_date ,
    table_name  ,
    table_rows  ,
    table_size
   )
   values(
    sysdate,
    vv_table_name,
    vi_table_rows,
    null
   );
  end;
   
 end loop;
  close r_cursor;  
  commit;
    
end;

 

/****************************************
--建表
create table tb_static_tab
(
 static_date date    , -- 統計日期
 table_name varchar2(64),  -- 表名
 table_rows number,       -- 錶行數
 table_size number         -- 表佔空間 byte
);
*****************************************/

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/3090/viewspace-667416/,如需轉載,請註明出處,否則將追究法律責任。

相關文章