Oracle 视图 DBA_TS_QUOTAS 官方解释,作用,如何使用详细说明

本站中文解释

Oracle视图DBA_TS_QUOTAS显示针对每一个表空间的配额情况,包括:每个表空间的配额名称、用户名称、表空间名称、最大配额、已经使用的块数、可用块数、被忽略的块数、配额开始使用的时间、修改时间和更新时间。

使用DBA_TS_QUOTAS视图以查看表空间的配额信息:

SELECT quota_name, username, tablespace_name, max_blocks, blocks_used, available_blocks, ignored_blocks, start_time, modified_time, last_update FROM dba_ts_quotas;

官方英文解释

DBA_TS_QUOTAS describes tablespace quotas for all users.

Related View

USER_TS_QUOTAS describes tablespace quotas for the current user. This view does not display the USERNAME column.

Column Datatype NULL Description

TABLESPACE_NAME

VARCHAR2(30)

NOT NULL

Tablespace name

USERNAME

VARCHAR2(128)

NOT NULL

User with resource rights on the tablespace

BYTES

NUMBER

Number of bytes charged to the user

MAX_BYTES

NUMBER

User’s quota in bytes, or -1 if no limit

BLOCKS

NUMBER

Number of Oracle blocks charged to the user

MAX_BLOCKS

NUMBER

User’s quota in Oracle blocks, or -1 if no limit

DROPPED

VARCHAR2(3)

Whether the tablespace has been dropped

See Also:

“USER_TS_QUOTAS”


数据运维技术 » Oracle 视图 DBA_TS_QUOTAS 官方解释,作用,如何使用详细说明