Home > Database > Mysql Tutorial > Oracle 当前用户下所有表的记录总数

Oracle 当前用户下所有表的记录总数

WBOY
Release: 2016-06-07 18:06:01
Original
878 people have browsed it

Oracle 数据库下 查询当前用户下所有表的记录总数

分析当前用户下所有表的记录总数
保证好用!
代码如下:
begin
dbms_utility.analyze_schema(user,'COMPUTE');
end;
select t.table_name,t.num_rows,t.blocks,t.empty_blocks from user_tables t
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