Home >Database >Mysql Tutorial >查询数据中所有表实际记录数

查询数据中所有表实际记录数

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-07 15:54:151115browse

set serverout onset serveroutput on size 1000000declarev_tab_name varchar2(100);cursor empCur is select table_name from user_tables;n_lows number;v_sql varchar2(1000);begin open empCur; loop fetch empCur into v_tab_name; v_sql:='select cou

set serverout on
set serveroutput on size 1000000
declare
v_tab_name varchar2(100);
cursor empCur is  select table_name from user_tables;
n_lows number;
v_sql varchar2(1000);
begin
  open empCur;
  
   loop
    fetch empCur into v_tab_name;
    v_sql:='select count(1) from '||v_tab_name;
    execute immediate v_sql into n_lows;
    exit when empCur%notfound; 
     DBMS_OUTPUT.PUT_LINE(v_tab_name||','||n_lows);
   end loop;
    commit;
  close empCur; 
end;

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:oracle 内核参数设置Next article:逻辑DataGuard的配置