ORACLE数据库字典表操作

大憨熊 提交于 2020-03-10 07:58:18

1、数据字典中用户表:dba_users;
2、数据字典中表空间表: dba_tablespaces;
3、oracle 查看用户所在的表空间:select username,default_tablespace from dba_users;
4、查看表空间的名字及大小:select t.tablespace_name, round(sum(bytes/(1024*1024)),0) ts_size from dba_tablespaces t, dba_data_files d where t.tablespace_name = d.tablespace_name group by t.tablespace_name;

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!