ORACLE基础操作--查看表空间、schema和表空间下所有表

2年前 (2022) 程序员胖胖胖虎阿
228 0 0

数据字典:dba_users、dba_tables、dba_tablespaces

1.查看所有表空间
select * from Dba_Tablespaces;
呈现的信息表空间名称以及表空间的大小等。

2.查看表空间下所有的表
select TABLE_NAME,TABLESPACE_NAME from dba_tables where TABLESPACE_NAME=‘表空间名’;

3.查看用户默认表空间
select username,default_tablespace from dba_users order by username;
3.1查看当前用户默认表空间
select * from user_users;

4.查看所有schema
select username from sys.dba_users;

5.查看schema下所有的表
select table_name from dba_tables where owner=‘schema名称’;

相关文章

暂无评论

暂无评论...