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

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

WBOY
Release: 2016-06-07 15:54:15
Original
1096 people have browsed it

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;
Copy after login

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template