Oracle統計某個使用者下所有表的各自行數

kisslfcr發表於2018-04-08
set serveroutput on 


declare
  t_count   number(10);
  t_str VARCHAR2(500);
  cursor t_tables is select table_name from user_tables;
begin
  for t_row in t_tables loop
    t_str := 'select count(*) from '|| t_row.table_name;
    execute immediate t_str into t_count;
    dbms_output.put_line( t_row.table_name || '=' || to_char(t_count));
  end loop;
end;

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

相關文章