oracle 所有查詢和表空間,以及其關係

2021-06-22 18:09:08 字數 395 閱讀 9133

select * from dba_users;   檢視資料庫裡面所有使用者,前提是你是有dba許可權的帳號,如sys,system

select * from all_users;     檢視你能管理的所有使用者

select * from user_users; 檢視當前使用者資訊

查詢使用者的表空間:

select username,default_tablespace from dba_users;  查詢資料庫所有使用者所在表空間

select username,default_tablespace from user_users; 產線當前使用者所在表空間

查詢所有表空間名稱:

select tablespace_name from dba_tablespaces;

oracle 查詢表空間所有表 及表所有的表空間

查詢表空間所有表 select table name from all tables where tablespace name 表空間 表空間名字一定要大寫。查詢表所在的表空間 select from user tables where table name 表名 表名一定要大寫 建立表空間 cr...

oracle 查詢所有表和字段

select from all tab comments 查詢所有使用者的表,檢視等 select from user tab comments 查詢本使用者的表,檢視等 select from all col comments 查詢所有使用者的表的列名和注釋.select from user co...

Oracle查詢所有表

select fromall tab comments 查詢所有使用者的表,檢視等 select fromuser tab comments 查詢本使用者的表,檢視等 select fromall col comments 查詢所有使用者的表的列名和注釋.select fromuser col co...