1、數據字典中用戶表:dba_users;通過數據字典查看有多少個用戶:select username from dba_users。
2、數據字典中表空間表: dba_tablespaces;查看有幾個表空間:select tablespace_name from dba_tablespaces。
3、oracle 查看用戶所在的表空間:select username,default_tablespace from dba_users order by username;如圖所示;
4、完成效果圖。