在oracle中,可以利用「select」語句來查詢指定使用者的表空間,語法「select default_tablespace from dba_users where username='使用者名稱'」。
本教學操作環境:Windows7系統、Oracle 11g版、Dell G3電腦。
如何查詢目前使用者的表空間名稱?因為oracle建立索引,需要知道目前使用者的表空間,找了一下資料
--查询语法-- select default_tablespace from dba_users where username='登录用户'
如,我的登入使用者是TMS21
,那麼查詢語法就是
/* 查看用户所属的表空间 */ select default_tablespace from dba_users where username='TMS21';
相關查詢的用法,也順便記錄一下
1)查詢目前使用者表空間
/* 查看用户所属的表空间 */ select default_tablespace from dba_users where username='TMS21';
2)查詢所有表空間
/*查看所有的表空间 */ -- 1 )方式1:dba_tablespaces -- select * from dba_tablespaces; --2 )方式2:v$tablespace -- select * from v$tablespace;
3)查詢使用者下所有表
/* 查看用户下面的所有的表 */ -- 1 )方式1:user_tables -- select * from user_tables; --2 )方式2: dba_tables -- select * from dba_tables where owner='TMS21';
4)查詢表空間下的使用者
/*查看表空间下有多少用户,tablespace_name表空间 的名字一定要大写 */ select distinct s.owner from dba_segments s where s.tablespace_name ='TMS21';
PS:因為我的表空間名稱跟使用者一樣,所以4)中的表空間都是TMS21(以查詢結果為主)
推薦教學:《Oracle教學》
以上是oracle怎麼查詢指定使用者的表空間的詳細內容。更多資訊請關注PHP中文網其他相關文章!