查詢Oracle資料庫使用者表中的多少資料量

huangdazhu發表於2014-09-23

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

 

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

相關文章