oracle 查所有表空间\用户\表\视图\序列号\同义词 判断表是否有数据

–查所有表空间
select tablespace_name, sum(bytes)/1024/1024
from dba_data_files group by tablespace_name;
–查所有用户
select * from all_users order by username;
–查当前用户下所有表 表名 表说明 字段说明
select * from user_tab_comments where table_type=‘TABLE’ ORDER BY TABLE_NAME ASC;
–查当前用户下所有视图
select * from user_tab_comments where table_type=‘VIEW’ ORDER BY TABLE_NAME ASC;

–查询制定用户下的所有表 表行数 可以通过行数判断某个表是否有数据
select * from all_tables where owner=‘用户’;

–查指定用户下所有同义词
select * from all_synonyms where table_owner=‘用户’ ;

–查当前用户下的所有序列号
select * from user_sequences;

你可能感兴趣的:(oracle,dba,数据库)