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

來源:互聯網
上載者:User

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

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怎查詢所有的資料表空間的名稱?

很簡單,查 dba_tablespaces 資料字典:
select tablespace_name from dba_tablespaces;
 
Oracle怎查詢資料表空間?

系統資料字典 DBA_TABLESPACES 中記錄了關於資料表空間的詳細資料:

select * from sys.dba_tablespaces;

資料字典 DBA_TABLESPACES 中的欄位和含義:

TABLESPACE_NAME
Tablespace name
BLOCK_SIZE
Tablespace block size
INITIAL_EXTENT
Default initial extent size
NEXT_EXTENT
Default incremental extent size
MIN_EXTENTS
Default minimum number of extents
MAX_EXTENTS
Default maximum number of extents
PCT_INCREASE
Default percent increase for extent size
MIN_EXTLEN
Minimum extent size for the tablespace
STATUS
"Tablespace status: "ONLINE","OFFLINE" or "READ
CONTENTS
Tablespace contents: "PERMANENT" or "TEMPORARY" or "UNDO"
LOGGING
Default logging attribute
FORCE_LOGGING
Tablespace force logging mode
EXTENT_MANAGEMENT
Extent management tracking: "DICTIONARY" or "LOCAL"
ALLOCATION_TYPE
Type of extent allocation in effect for this tablespace
PLUGGED_IN
--
SEGMENT_SPACE_MANAGEMENT
Segment space management tracking: "AUTO" or "MANUAL"
 

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.